commit f865b400fb6750fd5206233ee4998cdbfa2777b4 Author: Brendan Chen Date: Wed Jun 24 12:03:59 2026 -0400 Initial global Obsidian config Shared config extracted from obsidian-config; vault-specific files (bookmarks.json, daily-notes.json) excluded. Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_01ASYabtTgxSxJPjxPmBK9PJ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c227010 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +workspace.json +workspace-mobile.json +workspaces.json +.DS_Store \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..cbe75fa --- /dev/null +++ b/README.md @@ -0,0 +1,88 @@ +# Obsidian config — global + per-vault fork model + +Two-tier Obsidian configuration: + +- **Global config** — `ssh://git@gitea.bchen.dev:2222/brendan/obsidian-global-config.git` — + shared settings (plugins, hotkeys, appearance, theme) used by **every** vault. +- **Per-vault config** (this repo, e.g. `obsidian-config`) — a *fork* of the global repo: + the global config **plus** files specific to one vault that must sync with that vault + but never be published globally. + +Each vault's `.obsidian` is a git submodule pointing at that vault's per-vault repo, which +has the global repo configured as its `upstream` remote. + +``` +vault/.obsidian ──submodule──► obsidian-config (per-vault, downstream) + │ remote: upstream + ▼ + obsidian-global-config (shared, upstream) +``` + +## Tiers + +| Tier | Examples | Lives in | +|---|---|---| +| **Global** (shared everywhere) | `app.json`, `appearance.json`, `hotkeys.json`, `templates.json`, `core-plugins.json`, `community-plugins.json`, `types.json`, `themes/**`, plugin code, most plugin `data.json` | global upstream → flows to every vault | +| **Vault-specific** (synced, never published) | `bookmarks.json`, `daily-notes.json` | per-vault repo only — never pushed upstream | +| **Machine-local** (not synced) | `workspace.json`, `workspaces.json`, `workspace-mobile.json`, `.DS_Store` | gitignored everywhere | + +## Daily workflow + +Run from a vault root (where `.obsidian` is the submodule). + +**Change a vault-specific setting** (a bookmark, the daily-notes folder) — stays in this vault: + +```bash +git -C .obsidian add -A +git -C .obsidian commit -m "..." +git -C .obsidian push +git add .obsidian && git commit -m "bump config" && git push # record the pointer +``` + +**Pull global changes down** — conflict-free; never touches your vault-specific files: + +```bash +git -C .obsidian fetch upstream +git -C .obsidian merge upstream/main +git -C .obsidian push # save merged result to this vault's repo +git add .obsidian && git commit -m "pull global config" && git push +``` + +**Change a global setting** — make it in a clone of the **global** repo, push there, then run +the pull-down above in each vault: + +```bash +git -C /path/to/obsidian-global-config add -A +git -C /path/to/obsidian-global-config commit -m "..." +git -C /path/to/obsidian-global-config push +``` + +> Promoting a *global* change you happened to make **inside a vault** isn't a plain push +> (your per-vault history has vault-specific commits in the way) — cherry-pick it onto an +> `upstream`-tracking branch and push that. Editing global settings in the global clone +> avoids this entirely. + +## Which files are vault-specific + +The current list is `bookmarks.json` and `daily-notes.json`. To make a plugin's settings +vault-specific, add `plugins//data.json` to the denylist and remove it from the +global repo. The denylist is enforced by a `pre-receive` hook on the global repo, which +rejects any push that touches a vault-specific path (so a stray cherry-pick can't publish +private data). See the project notes for the hook script. + +## Bootstrapping a new vault + +- **Only needs the global config** → point the submodule straight at the global repo: + + ```bash + git submodule add ssh://git@gitea.bchen.dev:2222/brendan/obsidian-global-config.git .obsidian + ``` + +- **Needs its own private tracked config** → create an empty gitea repo for it, seed it from + the global repo, add it as the submodule, and set `upstream` to the global repo. (Ask to + have this scripted.) + +> Do this **before opening the vault in Obsidian** — Obsidian auto-creates a default +> `.obsidian/` on first open, which blocks the submodule add. Delete it first if present. +> On first open the vault starts in **Restricted Mode** — click **Trust author and enable +> plugins** to load the configured community plugins. diff --git a/app.json b/app.json new file mode 100644 index 0000000..864b8f3 --- /dev/null +++ b/app.json @@ -0,0 +1,25 @@ +{ + "vimMode": false, + "showUnsupportedFiles": true, + "livePreview": true, + "showInlineTitle": false, + "mobileToolbarCommands": [ + "editor:undo", + "editor:redo", + "editor:swap-line-up", + "editor:swap-line-down", + "editor:move-caret-up", + "editor:move-caret-down", + "editor:move-caret-left", + "editor:move-caret-right", + "editor:insert-wikilink", + "insert-current-date", + "editor:toggle-checklist-status", + "editor:toggle-bullet-list", + "editor:indent-list", + "editor:unindent-list", + "editor:configure-toolbar" + ], + "promptDelete": true, + "alwaysUpdateLinks": true +} \ No newline at end of file diff --git a/appearance.json b/appearance.json new file mode 100644 index 0000000..24d8b96 --- /dev/null +++ b/appearance.json @@ -0,0 +1,8 @@ +{ + "cssTheme": "Minimal", + "showRibbon": true, + "textFontFamily": "", + "translucency": true, + "interfaceFontFamily": "", + "baseFontSize": 18 +} \ No newline at end of file diff --git a/community-plugins.json b/community-plugins.json new file mode 100644 index 0000000..aa7b56a --- /dev/null +++ b/community-plugins.json @@ -0,0 +1,7 @@ +[ + "obsidian-minimal-settings", + "obsidian-hider", + "calendar", + "multi-vault-links", + "typewriter-mode" +] \ No newline at end of file diff --git a/core-plugins.json b/core-plugins.json new file mode 100644 index 0000000..b20bef3 --- /dev/null +++ b/core-plugins.json @@ -0,0 +1,33 @@ +{ + "file-explorer": true, + "global-search": true, + "switcher": true, + "graph": true, + "backlink": true, + "canvas": false, + "outgoing-link": true, + "tag-pane": true, + "footnotes": false, + "properties": false, + "page-preview": true, + "daily-notes": true, + "templates": true, + "note-composer": false, + "command-palette": true, + "slash-command": false, + "editor-status": true, + "bookmarks": true, + "markdown-importer": false, + "zk-prefixer": false, + "random-note": false, + "outline": true, + "word-count": true, + "slides": false, + "audio-recorder": false, + "workspaces": true, + "file-recovery": true, + "publish": false, + "sync": false, + "bases": true, + "webviewer": false +} \ No newline at end of file diff --git a/hotkeys.json b/hotkeys.json new file mode 100644 index 0000000..b2b0387 --- /dev/null +++ b/hotkeys.json @@ -0,0 +1,374 @@ +{ + "editor:toggle-checklist-status": [ + { + "modifiers": [ + "Mod" + ], + "key": "." + } + ], + "editor:toggle-bullet-list": [ + { + "modifiers": [ + "Mod" + ], + "key": "L" + } + ], + "editor:toggle-numbered-list": [ + { + "modifiers": [ + "Mod", + "Shift" + ], + "key": "L" + } + ], + "workspace:split-vertical": [ + { + "modifiers": [ + "Mod" + ], + "key": "\\" + } + ], + "app:delete-file": [ + { + "modifiers": [ + "Mod", + "Shift" + ], + "key": "Backspace" + } + ], + "editor:toggle-comments": [], + "app:toggle-left-sidebar": [ + { + "modifiers": [ + "Mod" + ], + "key": "/" + } + ], + "app:toggle-right-sidebar": [ + { + "modifiers": [ + "Mod", + "Shift" + ], + "key": "/" + }, + { + "modifiers": [ + "Mod", + "Shift" + ], + "key": "\\" + } + ], + "editor:swap-line-up": [ + { + "modifiers": [ + "Alt", + "Mod" + ], + "key": "ArrowUp" + } + ], + "editor:swap-line-down": [ + { + "modifiers": [ + "Alt", + "Mod" + ], + "key": "ArrowDown" + } + ], + "tag-pane:open": [ + { + "modifiers": [ + "Mod", + "Shift" + ], + "key": "G" + } + ], + "outline:open": [ + { + "modifiers": [ + "Mod", + "Shift" + ], + "key": "O" + } + ], + "file-explorer:open": [ + { + "modifiers": [ + "Mod", + "Shift" + ], + "key": "E" + } + ], + "editor:delete-paragraph": [ + { + "modifiers": [ + "Alt", + "Mod" + ], + "key": "D" + } + ], + "editor:toggle-highlight": [ + { + "modifiers": [ + "Mod", + "Shift" + ], + "key": "H" + } + ], + "editor:set-heading-1": [ + { + "modifiers": [ + "Alt" + ], + "key": "1" + } + ], + "editor:set-heading-2": [ + { + "modifiers": [ + "Alt" + ], + "key": "2" + } + ], + "editor:set-heading-3": [ + { + "modifiers": [ + "Alt" + ], + "key": "3" + } + ], + "daily-notes": [ + { + "modifiers": [ + "Alt", + "Mod", + "Shift" + ], + "key": "D" + } + ], + "daily-notes:goto-next": [ + { + "modifiers": [ + "Alt", + "Mod", + "Shift" + ], + "key": "ArrowRight" + } + ], + "daily-notes:goto-prev": [ + { + "modifiers": [ + "Alt", + "Mod", + "Shift" + ], + "key": "ArrowLeft" + } + ], + "open-with-default-app:show": [ + { + "modifiers": [ + "Alt", + "Mod" + ], + "key": "R" + } + ], + "file-explorer:move-file": [ + { + "modifiers": [ + "Mod", + "Shift" + ], + "key": "M" + } + ], + "insert-template": [ + { + "modifiers": [ + "Alt", + "Mod", + "Shift" + ], + "key": "T" + } + ], + "bookmarks:open": [ + { + "modifiers": [ + "Mod", + "Shift" + ], + "key": "B" + } + ], + "workspace:goto-tab-1": [ + { + "modifiers": [ + "Ctrl" + ], + "key": "1" + } + ], + "workspace:goto-tab-2": [ + { + "modifiers": [ + "Ctrl" + ], + "key": "2" + } + ], + "workspace:goto-tab-3": [ + { + "modifiers": [ + "Mod" + ], + "key": "3" + }, + { + "modifiers": [ + "Ctrl" + ], + "key": "3" + } + ], + "workspace:goto-tab-4": [ + { + "modifiers": [ + "Mod" + ], + "key": "4" + }, + { + "modifiers": [ + "Ctrl" + ], + "key": "4" + } + ], + "workspace:goto-tab-5": [ + { + "modifiers": [ + "Mod" + ], + "key": "5" + }, + { + "modifiers": [ + "Ctrl" + ], + "key": "5" + } + ], + "workspace:goto-tab-6": [ + { + "modifiers": [ + "Mod" + ], + "key": "6" + }, + { + "modifiers": [ + "Ctrl" + ], + "key": "6" + } + ], + "workspace:goto-tab-7": [ + { + "modifiers": [ + "Mod" + ], + "key": "7" + }, + { + "modifiers": [ + "Ctrl" + ], + "key": "7" + } + ], + "workspace:goto-tab-8": [ + { + "modifiers": [ + "Mod" + ], + "key": "8" + }, + { + "modifiers": [ + "Ctrl" + ], + "key": "8" + } + ], + "app:open-another-vault": [ + { + "modifiers": [ + "Alt", + "Mod", + "Shift" + ], + "key": "O" + } + ], + "insert-current-date": [ + { + "modifiers": [ + "Mod", + "Shift" + ], + "key": "9" + } + ], + "editor:insert-footnote": [ + { + "modifiers": [ + "Mod" + ], + "key": "'" + } + ], + "typewriter-mode:writing-focus-toggle": [ + { + "modifiers": [ + "Mod" + ], + "key": "D" + } + ], + "editor:focus-left": [ + { + "modifiers": [ + "Mod" + ], + "key": "1" + } + ], + "editor:focus-right": [ + { + "modifiers": [ + "Mod" + ], + "key": "2" + } + ] +} \ No newline at end of file diff --git a/plugins/calendar/data.json b/plugins/calendar/data.json new file mode 100644 index 0000000..2a84151 --- /dev/null +++ b/plugins/calendar/data.json @@ -0,0 +1,10 @@ +{ + "shouldConfirmBeforeCreate": false, + "weekStart": "locale", + "wordsPerDot": 250, + "showWeeklyNote": true, + "weeklyNoteFormat": "[N°.]ggww", + "weeklyNoteTemplate": "Templates/Weekly plan template", + "weeklyNoteFolder": "02 Areas/Weekly", + "localeOverride": "system-default" +} \ No newline at end of file diff --git a/plugins/calendar/main.js b/plugins/calendar/main.js new file mode 100644 index 0000000..ed6cea3 --- /dev/null +++ b/plugins/calendar/main.js @@ -0,0 +1,4459 @@ +'use strict'; + +var obsidian = require('obsidian'); + +function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } + +var obsidian__default = /*#__PURE__*/_interopDefaultLegacy(obsidian); + +const DEFAULT_WEEK_FORMAT = "gggg-[W]ww"; +const DEFAULT_WORDS_PER_DOT = 250; +const VIEW_TYPE_CALENDAR = "calendar"; +const TRIGGER_ON_OPEN = "calendar:open"; + +const DEFAULT_DAILY_NOTE_FORMAT = "YYYY-MM-DD"; +const DEFAULT_WEEKLY_NOTE_FORMAT = "gggg-[W]ww"; +const DEFAULT_MONTHLY_NOTE_FORMAT = "YYYY-MM"; + +function shouldUsePeriodicNotesSettings(periodicity) { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const periodicNotes = window.app.plugins.getPlugin("periodic-notes"); + return periodicNotes && periodicNotes.settings?.[periodicity]?.enabled; +} +/** + * Read the user settings for the `daily-notes` plugin + * to keep behavior of creating a new note in-sync. + */ +function getDailyNoteSettings() { + try { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const { internalPlugins, plugins } = window.app; + if (shouldUsePeriodicNotesSettings("daily")) { + const { format, folder, template } = plugins.getPlugin("periodic-notes")?.settings?.daily || {}; + return { + format: format || DEFAULT_DAILY_NOTE_FORMAT, + folder: folder?.trim() || "", + template: template?.trim() || "", + }; + } + const { folder, format, template } = internalPlugins.getPluginById("daily-notes")?.instance?.options || {}; + return { + format: format || DEFAULT_DAILY_NOTE_FORMAT, + folder: folder?.trim() || "", + template: template?.trim() || "", + }; + } + catch (err) { + console.info("No custom daily note settings found!", err); + } +} +/** + * Read the user settings for the `weekly-notes` plugin + * to keep behavior of creating a new note in-sync. + */ +function getWeeklyNoteSettings() { + try { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const pluginManager = window.app.plugins; + const calendarSettings = pluginManager.getPlugin("calendar")?.options; + const periodicNotesSettings = pluginManager.getPlugin("periodic-notes") + ?.settings?.weekly; + if (shouldUsePeriodicNotesSettings("weekly")) { + return { + format: periodicNotesSettings.format || DEFAULT_WEEKLY_NOTE_FORMAT, + folder: periodicNotesSettings.folder?.trim() || "", + template: periodicNotesSettings.template?.trim() || "", + }; + } + const settings = calendarSettings || {}; + return { + format: settings.weeklyNoteFormat || DEFAULT_WEEKLY_NOTE_FORMAT, + folder: settings.weeklyNoteFolder?.trim() || "", + template: settings.weeklyNoteTemplate?.trim() || "", + }; + } + catch (err) { + console.info("No custom weekly note settings found!", err); + } +} +/** + * Read the user settings for the `periodic-notes` plugin + * to keep behavior of creating a new note in-sync. + */ +function getMonthlyNoteSettings() { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const pluginManager = window.app.plugins; + try { + const settings = (shouldUsePeriodicNotesSettings("monthly") && + pluginManager.getPlugin("periodic-notes")?.settings?.monthly) || + {}; + return { + format: settings.format || DEFAULT_MONTHLY_NOTE_FORMAT, + folder: settings.folder?.trim() || "", + template: settings.template?.trim() || "", + }; + } + catch (err) { + console.info("No custom monthly note settings found!", err); + } +} + +/** + * dateUID is a way of weekly identifying daily/weekly/monthly notes. + * They are prefixed with the granularity to avoid ambiguity. + */ +function getDateUID$1(date, granularity = "day") { + const ts = date.clone().startOf(granularity).format(); + return `${granularity}-${ts}`; +} +function removeEscapedCharacters(format) { + return format.replace(/\[[^\]]*\]/g, ""); // remove everything within brackets +} +/** + * XXX: When parsing dates that contain both week numbers and months, + * Moment choses to ignore the week numbers. For the week dateUID, we + * want the opposite behavior. Strip the MMM from the format to patch. + */ +function isFormatAmbiguous(format, granularity) { + if (granularity === "week") { + const cleanFormat = removeEscapedCharacters(format); + return (/w{1,2}/i.test(cleanFormat) && + (/M{1,4}/.test(cleanFormat) || /D{1,4}/.test(cleanFormat))); + } + return false; +} +function getDateFromFile(file, granularity) { + const getSettings = { + day: getDailyNoteSettings, + week: getWeeklyNoteSettings, + month: getMonthlyNoteSettings, + }; + const format = getSettings[granularity]().format.split("/").pop(); + const noteDate = window.moment(file.basename, format, true); + if (!noteDate.isValid()) { + return null; + } + if (isFormatAmbiguous(format, granularity)) { + if (granularity === "week") { + const cleanFormat = removeEscapedCharacters(format); + if (/w{1,2}/i.test(cleanFormat)) { + return window.moment(file.basename, + // If format contains week, remove day & month formatting + format.replace(/M{1,4}/g, "").replace(/D{1,4}/g, ""), false); + } + } + } + return noteDate; +} + +// Credit: @creationix/path.js +function join(...partSegments) { + // Split the inputs into a list of path commands. + let parts = []; + for (let i = 0, l = partSegments.length; i < l; i++) { + parts = parts.concat(partSegments[i].split("/")); + } + // Interpret the path commands to get the new resolved path. + const newParts = []; + for (let i = 0, l = parts.length; i < l; i++) { + const part = parts[i]; + // Remove leading and trailing slashes + // Also remove "." segments + if (!part || part === ".") + continue; + // Push new path segments. + else + newParts.push(part); + } + // Preserve the initial slash if there was one. + if (parts[0] === "") + newParts.unshift(""); + // Turn back into a single string path. + return newParts.join("/"); +} +async function ensureFolderExists(path) { + const dirs = path.replace(/\\/g, "/").split("/"); + dirs.pop(); // remove basename + if (dirs.length) { + const dir = join(...dirs); + if (!window.app.vault.getAbstractFileByPath(dir)) { + await window.app.vault.createFolder(dir); + } + } +} +async function getNotePath(directory, filename) { + if (!filename.endsWith(".md")) { + filename += ".md"; + } + const path = obsidian__default['default'].normalizePath(join(directory, filename)); + await ensureFolderExists(path); + return path; +} +async function getTemplateInfo(template) { + const { metadataCache, vault } = window.app; + const templatePath = obsidian__default['default'].normalizePath(template); + if (templatePath === "/") { + return Promise.resolve(["", null]); + } + try { + const templateFile = metadataCache.getFirstLinkpathDest(templatePath, ""); + const contents = await vault.cachedRead(templateFile); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const IFoldInfo = window.app.foldManager.load(templateFile); + return [contents, IFoldInfo]; + } + catch (err) { + console.error(`Failed to read the daily note template '${templatePath}'`, err); + new obsidian__default['default'].Notice("Failed to read the daily note template"); + return ["", null]; + } +} + +class DailyNotesFolderMissingError extends Error { +} +/** + * This function mimics the behavior of the daily-notes plugin + * so it will replace {{date}}, {{title}}, and {{time}} with the + * formatted timestamp. + * + * Note: it has an added bonus that it's not 'today' specific. + */ +async function createDailyNote(date) { + const app = window.app; + const { vault } = app; + const moment = window.moment; + const { template, format, folder } = getDailyNoteSettings(); + const [templateContents, IFoldInfo] = await getTemplateInfo(template); + const filename = date.format(format); + const normalizedPath = await getNotePath(folder, filename); + try { + const createdFile = await vault.create(normalizedPath, templateContents + .replace(/{{\s*date\s*}}/gi, filename) + .replace(/{{\s*time\s*}}/gi, moment().format("HH:mm")) + .replace(/{{\s*title\s*}}/gi, filename) + .replace(/{{\s*(date|time)\s*(([+-]\d+)([yqmwdhs]))?\s*(:.+?)?}}/gi, (_, _timeOrDate, calc, timeDelta, unit, momentFormat) => { + const now = moment(); + const currentDate = date.clone().set({ + hour: now.get("hour"), + minute: now.get("minute"), + second: now.get("second"), + }); + if (calc) { + currentDate.add(parseInt(timeDelta, 10), unit); + } + if (momentFormat) { + return currentDate.format(momentFormat.substring(1).trim()); + } + return currentDate.format(format); + }) + .replace(/{{\s*yesterday\s*}}/gi, date.clone().subtract(1, "day").format(format)) + .replace(/{{\s*tomorrow\s*}}/gi, date.clone().add(1, "d").format(format))); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + app.foldManager.save(createdFile, IFoldInfo); + return createdFile; + } + catch (err) { + console.error(`Failed to create file: '${normalizedPath}'`, err); + new obsidian__default['default'].Notice("Unable to create new file."); + } +} +function getDailyNote(date, dailyNotes) { + return dailyNotes[getDateUID$1(date, "day")] ?? null; +} +function getAllDailyNotes() { + /** + * Find all daily notes in the daily note folder + */ + const { vault } = window.app; + const { folder } = getDailyNoteSettings(); + const dailyNotesFolder = vault.getAbstractFileByPath(obsidian__default['default'].normalizePath(folder)); + if (!dailyNotesFolder) { + throw new DailyNotesFolderMissingError("Failed to find daily notes folder"); + } + const dailyNotes = {}; + obsidian__default['default'].Vault.recurseChildren(dailyNotesFolder, (note) => { + if (note instanceof obsidian__default['default'].TFile) { + const date = getDateFromFile(note, "day"); + if (date) { + const dateString = getDateUID$1(date, "day"); + dailyNotes[dateString] = note; + } + } + }); + return dailyNotes; +} + +class WeeklyNotesFolderMissingError extends Error { +} +function getDaysOfWeek$1() { + const { moment } = window; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + let weekStart = moment.localeData()._week.dow; + const daysOfWeek = [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday", + ]; + while (weekStart) { + daysOfWeek.push(daysOfWeek.shift()); + weekStart--; + } + return daysOfWeek; +} +function getDayOfWeekNumericalValue(dayOfWeekName) { + return getDaysOfWeek$1().indexOf(dayOfWeekName.toLowerCase()); +} +async function createWeeklyNote(date) { + const { vault } = window.app; + const { template, format, folder } = getWeeklyNoteSettings(); + const [templateContents, IFoldInfo] = await getTemplateInfo(template); + const filename = date.format(format); + const normalizedPath = await getNotePath(folder, filename); + try { + const createdFile = await vault.create(normalizedPath, templateContents + .replace(/{{\s*(date|time)\s*(([+-]\d+)([yqmwdhs]))?\s*(:.+?)?}}/gi, (_, _timeOrDate, calc, timeDelta, unit, momentFormat) => { + const now = window.moment(); + const currentDate = date.clone().set({ + hour: now.get("hour"), + minute: now.get("minute"), + second: now.get("second"), + }); + if (calc) { + currentDate.add(parseInt(timeDelta, 10), unit); + } + if (momentFormat) { + return currentDate.format(momentFormat.substring(1).trim()); + } + return currentDate.format(format); + }) + .replace(/{{\s*title\s*}}/gi, filename) + .replace(/{{\s*time\s*}}/gi, window.moment().format("HH:mm")) + .replace(/{{\s*(sunday|monday|tuesday|wednesday|thursday|friday|saturday)\s*:(.*?)}}/gi, (_, dayOfWeek, momentFormat) => { + const day = getDayOfWeekNumericalValue(dayOfWeek); + return date.weekday(day).format(momentFormat.trim()); + })); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + window.app.foldManager.save(createdFile, IFoldInfo); + return createdFile; + } + catch (err) { + console.error(`Failed to create file: '${normalizedPath}'`, err); + new obsidian__default['default'].Notice("Unable to create new file."); + } +} +function getWeeklyNote(date, weeklyNotes) { + return weeklyNotes[getDateUID$1(date, "week")] ?? null; +} +function getAllWeeklyNotes() { + const { vault } = window.app; + const { folder } = getWeeklyNoteSettings(); + const weeklyNotesFolder = vault.getAbstractFileByPath(obsidian__default['default'].normalizePath(folder)); + if (!weeklyNotesFolder) { + throw new WeeklyNotesFolderMissingError("Failed to find weekly notes folder"); + } + const weeklyNotes = {}; + obsidian__default['default'].Vault.recurseChildren(weeklyNotesFolder, (note) => { + if (note instanceof obsidian__default['default'].TFile) { + const date = getDateFromFile(note, "week"); + if (date) { + const dateString = getDateUID$1(date, "week"); + weeklyNotes[dateString] = note; + } + } + }); + return weeklyNotes; +} + +function appHasDailyNotesPluginLoaded() { + const { app } = window; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const dailyNotesPlugin = app.internalPlugins.plugins["daily-notes"]; + if (dailyNotesPlugin && dailyNotesPlugin.enabled) { + return true; + } + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const periodicNotes = app.plugins.getPlugin("periodic-notes"); + return periodicNotes && periodicNotes.settings?.daily?.enabled; +} +var appHasDailyNotesPluginLoaded_1 = appHasDailyNotesPluginLoaded; +var createDailyNote_1 = createDailyNote; +var createWeeklyNote_1 = createWeeklyNote; +var getAllDailyNotes_1 = getAllDailyNotes; +var getAllWeeklyNotes_1 = getAllWeeklyNotes; +var getDailyNote_1 = getDailyNote; +var getDailyNoteSettings_1 = getDailyNoteSettings; +var getDateFromFile_1 = getDateFromFile; +var getDateUID_1$1 = getDateUID$1; +var getWeeklyNote_1 = getWeeklyNote; +var getWeeklyNoteSettings_1 = getWeeklyNoteSettings; + +function noop$1() { } +function run$1(fn) { + return fn(); +} +function blank_object$1() { + return Object.create(null); +} +function run_all$1(fns) { + fns.forEach(run$1); +} +function is_function$1(thing) { + return typeof thing === 'function'; +} +function safe_not_equal$1(a, b) { + return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function'); +} +function not_equal$1(a, b) { + return a != a ? b == b : a !== b; +} +function is_empty$1(obj) { + return Object.keys(obj).length === 0; +} +function subscribe(store, ...callbacks) { + if (store == null) { + return noop$1; + } + const unsub = store.subscribe(...callbacks); + return unsub.unsubscribe ? () => unsub.unsubscribe() : unsub; +} +function get_store_value(store) { + let value; + subscribe(store, _ => value = _)(); + return value; +} +function component_subscribe(component, store, callback) { + component.$$.on_destroy.push(subscribe(store, callback)); +} +function detach$1(node) { + node.parentNode.removeChild(node); +} +function children$1(element) { + return Array.from(element.childNodes); +} + +let current_component$1; +function set_current_component$1(component) { + current_component$1 = component; +} +function get_current_component$1() { + if (!current_component$1) + throw new Error('Function called outside component initialization'); + return current_component$1; +} +function onDestroy(fn) { + get_current_component$1().$$.on_destroy.push(fn); +} + +const dirty_components$1 = []; +const binding_callbacks$1 = []; +const render_callbacks$1 = []; +const flush_callbacks$1 = []; +const resolved_promise$1 = Promise.resolve(); +let update_scheduled$1 = false; +function schedule_update$1() { + if (!update_scheduled$1) { + update_scheduled$1 = true; + resolved_promise$1.then(flush$1); + } +} +function add_render_callback$1(fn) { + render_callbacks$1.push(fn); +} +function add_flush_callback(fn) { + flush_callbacks$1.push(fn); +} +let flushing$1 = false; +const seen_callbacks$1 = new Set(); +function flush$1() { + if (flushing$1) + return; + flushing$1 = true; + do { + // first, call beforeUpdate functions + // and update components + for (let i = 0; i < dirty_components$1.length; i += 1) { + const component = dirty_components$1[i]; + set_current_component$1(component); + update$1(component.$$); + } + set_current_component$1(null); + dirty_components$1.length = 0; + while (binding_callbacks$1.length) + binding_callbacks$1.pop()(); + // then, once components are updated, call + // afterUpdate functions. This may cause + // subsequent updates... + for (let i = 0; i < render_callbacks$1.length; i += 1) { + const callback = render_callbacks$1[i]; + if (!seen_callbacks$1.has(callback)) { + // ...so guard against infinite loops + seen_callbacks$1.add(callback); + callback(); + } + } + render_callbacks$1.length = 0; + } while (dirty_components$1.length); + while (flush_callbacks$1.length) { + flush_callbacks$1.pop()(); + } + update_scheduled$1 = false; + flushing$1 = false; + seen_callbacks$1.clear(); +} +function update$1($$) { + if ($$.fragment !== null) { + $$.update(); + run_all$1($$.before_update); + const dirty = $$.dirty; + $$.dirty = [-1]; + $$.fragment && $$.fragment.p($$.ctx, dirty); + $$.after_update.forEach(add_render_callback$1); + } +} +const outroing$1 = new Set(); +let outros$1; +function transition_in$1(block, local) { + if (block && block.i) { + outroing$1.delete(block); + block.i(local); + } +} +function transition_out$1(block, local, detach, callback) { + if (block && block.o) { + if (outroing$1.has(block)) + return; + outroing$1.add(block); + outros$1.c.push(() => { + outroing$1.delete(block); + if (callback) { + if (detach) + block.d(1); + callback(); + } + }); + block.o(local); + } +} + +function bind(component, name, callback) { + const index = component.$$.props[name]; + if (index !== undefined) { + component.$$.bound[index] = callback; + callback(component.$$.ctx[index]); + } +} +function create_component$1(block) { + block && block.c(); +} +function mount_component$1(component, target, anchor, customElement) { + const { fragment, on_mount, on_destroy, after_update } = component.$$; + fragment && fragment.m(target, anchor); + if (!customElement) { + // onMount happens before the initial afterUpdate + add_render_callback$1(() => { + const new_on_destroy = on_mount.map(run$1).filter(is_function$1); + if (on_destroy) { + on_destroy.push(...new_on_destroy); + } + else { + // Edge case - component was destroyed immediately, + // most likely as a result of a binding initialising + run_all$1(new_on_destroy); + } + component.$$.on_mount = []; + }); + } + after_update.forEach(add_render_callback$1); +} +function destroy_component$1(component, detaching) { + const $$ = component.$$; + if ($$.fragment !== null) { + run_all$1($$.on_destroy); + $$.fragment && $$.fragment.d(detaching); + // TODO null out other refs, including component.$$ (but need to + // preserve final state?) + $$.on_destroy = $$.fragment = null; + $$.ctx = []; + } +} +function make_dirty$1(component, i) { + if (component.$$.dirty[0] === -1) { + dirty_components$1.push(component); + schedule_update$1(); + component.$$.dirty.fill(0); + } + component.$$.dirty[(i / 31) | 0] |= (1 << (i % 31)); +} +function init$1(component, options, instance, create_fragment, not_equal, props, dirty = [-1]) { + const parent_component = current_component$1; + set_current_component$1(component); + const $$ = component.$$ = { + fragment: null, + ctx: null, + // state + props, + update: noop$1, + not_equal, + bound: blank_object$1(), + // lifecycle + on_mount: [], + on_destroy: [], + on_disconnect: [], + before_update: [], + after_update: [], + context: new Map(parent_component ? parent_component.$$.context : []), + // everything else + callbacks: blank_object$1(), + dirty, + skip_bound: false + }; + let ready = false; + $$.ctx = instance + ? instance(component, options.props || {}, (i, ret, ...rest) => { + const value = rest.length ? rest[0] : ret; + if ($$.ctx && not_equal($$.ctx[i], $$.ctx[i] = value)) { + if (!$$.skip_bound && $$.bound[i]) + $$.bound[i](value); + if (ready) + make_dirty$1(component, i); + } + return ret; + }) + : []; + $$.update(); + ready = true; + run_all$1($$.before_update); + // `false` as a special case of no DOM component + $$.fragment = create_fragment ? create_fragment($$.ctx) : false; + if (options.target) { + if (options.hydrate) { + const nodes = children$1(options.target); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + $$.fragment && $$.fragment.l(nodes); + nodes.forEach(detach$1); + } + else { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + $$.fragment && $$.fragment.c(); + } + if (options.intro) + transition_in$1(component.$$.fragment); + mount_component$1(component, options.target, options.anchor, options.customElement); + flush$1(); + } + set_current_component$1(parent_component); +} +/** + * Base class for Svelte components. Used when dev=false. + */ +class SvelteComponent$1 { + $destroy() { + destroy_component$1(this, 1); + this.$destroy = noop$1; + } + $on(type, callback) { + const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = [])); + callbacks.push(callback); + return () => { + const index = callbacks.indexOf(callback); + if (index !== -1) + callbacks.splice(index, 1); + }; + } + $set($$props) { + if (this.$$set && !is_empty$1($$props)) { + this.$$.skip_bound = true; + this.$$set($$props); + this.$$.skip_bound = false; + } + } +} + +const subscriber_queue = []; +/** + * Create a `Writable` store that allows both updating and reading by subscription. + * @param {*=}value initial value + * @param {StartStopNotifier=}start start and stop notifications for subscriptions + */ +function writable(value, start = noop$1) { + let stop; + const subscribers = []; + function set(new_value) { + if (safe_not_equal$1(value, new_value)) { + value = new_value; + if (stop) { // store is ready + const run_queue = !subscriber_queue.length; + for (let i = 0; i < subscribers.length; i += 1) { + const s = subscribers[i]; + s[1](); + subscriber_queue.push(s, value); + } + if (run_queue) { + for (let i = 0; i < subscriber_queue.length; i += 2) { + subscriber_queue[i][0](subscriber_queue[i + 1]); + } + subscriber_queue.length = 0; + } + } + } + } + function update(fn) { + set(fn(value)); + } + function subscribe(run, invalidate = noop$1) { + const subscriber = [run, invalidate]; + subscribers.push(subscriber); + if (subscribers.length === 1) { + stop = start(set) || noop$1; + } + run(value); + return () => { + const index = subscribers.indexOf(subscriber); + if (index !== -1) { + subscribers.splice(index, 1); + } + if (subscribers.length === 0) { + stop(); + stop = null; + } + }; + } + return { set, update, subscribe }; +} + +const weekdays$1 = [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday", +]; +const defaultSettings = Object.freeze({ + shouldConfirmBeforeCreate: true, + weekStart: "locale", + wordsPerDot: DEFAULT_WORDS_PER_DOT, + showWeeklyNote: false, + weeklyNoteFormat: "", + weeklyNoteTemplate: "", + weeklyNoteFolder: "", + localeOverride: "system-default", +}); +function appHasPeriodicNotesPluginLoaded() { + var _a, _b; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const periodicNotes = window.app.plugins.getPlugin("periodic-notes"); + return periodicNotes && ((_b = (_a = periodicNotes.settings) === null || _a === void 0 ? void 0 : _a.weekly) === null || _b === void 0 ? void 0 : _b.enabled); +} +class CalendarSettingsTab extends obsidian.PluginSettingTab { + constructor(app, plugin) { + super(app, plugin); + this.plugin = plugin; + } + display() { + this.containerEl.empty(); + if (!appHasDailyNotesPluginLoaded_1()) { + this.containerEl.createDiv("settings-banner", (banner) => { + banner.createEl("h3", { + text: "⚠️ Daily Notes plugin not enabled", + }); + banner.createEl("p", { + cls: "setting-item-description", + text: "The calendar is best used in conjunction with either the Daily Notes plugin or the Periodic Notes plugin (available in the Community Plugins catalog).", + }); + }); + } + this.containerEl.createEl("h3", { + text: "General Settings", + }); + this.addDotThresholdSetting(); + this.addWeekStartSetting(); + this.addConfirmCreateSetting(); + this.addShowWeeklyNoteSetting(); + if (this.plugin.options.showWeeklyNote && + !appHasPeriodicNotesPluginLoaded()) { + this.containerEl.createEl("h3", { + text: "Weekly Note Settings", + }); + this.containerEl.createEl("p", { + cls: "setting-item-description", + text: "Note: Weekly Note settings are moving. You are encouraged to install the 'Periodic Notes' plugin to keep the functionality in the future.", + }); + this.addWeeklyNoteFormatSetting(); + this.addWeeklyNoteTemplateSetting(); + this.addWeeklyNoteFolderSetting(); + } + this.containerEl.createEl("h3", { + text: "Advanced Settings", + }); + this.addLocaleOverrideSetting(); + } + addDotThresholdSetting() { + new obsidian.Setting(this.containerEl) + .setName("Words per dot") + .setDesc("How many words should be represented by a single dot?") + .addText((textfield) => { + textfield.setPlaceholder(String(DEFAULT_WORDS_PER_DOT)); + textfield.inputEl.type = "number"; + textfield.setValue(String(this.plugin.options.wordsPerDot)); + textfield.onChange(async (value) => { + this.plugin.writeOptions(() => ({ + wordsPerDot: value !== "" ? Number(value) : undefined, + })); + }); + }); + } + addWeekStartSetting() { + const { moment } = window; + const localizedWeekdays = moment.weekdays(); + const localeWeekStartNum = window._bundledLocaleWeekSpec.dow; + const localeWeekStart = moment.weekdays()[localeWeekStartNum]; + new obsidian.Setting(this.containerEl) + .setName("Start week on:") + .setDesc("Choose what day of the week to start. Select 'Locale default' to use the default specified by moment.js") + .addDropdown((dropdown) => { + dropdown.addOption("locale", `Locale default (${localeWeekStart})`); + localizedWeekdays.forEach((day, i) => { + dropdown.addOption(weekdays$1[i], day); + }); + dropdown.setValue(this.plugin.options.weekStart); + dropdown.onChange(async (value) => { + this.plugin.writeOptions(() => ({ + weekStart: value, + })); + }); + }); + } + addConfirmCreateSetting() { + new obsidian.Setting(this.containerEl) + .setName("Confirm before creating new note") + .setDesc("Show a confirmation modal before creating a new note") + .addToggle((toggle) => { + toggle.setValue(this.plugin.options.shouldConfirmBeforeCreate); + toggle.onChange(async (value) => { + this.plugin.writeOptions(() => ({ + shouldConfirmBeforeCreate: value, + })); + }); + }); + } + addShowWeeklyNoteSetting() { + new obsidian.Setting(this.containerEl) + .setName("Show week number") + .setDesc("Enable this to add a column with the week number") + .addToggle((toggle) => { + toggle.setValue(this.plugin.options.showWeeklyNote); + toggle.onChange(async (value) => { + this.plugin.writeOptions(() => ({ showWeeklyNote: value })); + this.display(); // show/hide weekly settings + }); + }); + } + addWeeklyNoteFormatSetting() { + new obsidian.Setting(this.containerEl) + .setName("Weekly note format") + .setDesc("For more syntax help, refer to format reference") + .addText((textfield) => { + textfield.setValue(this.plugin.options.weeklyNoteFormat); + textfield.setPlaceholder(DEFAULT_WEEK_FORMAT); + textfield.onChange(async (value) => { + this.plugin.writeOptions(() => ({ weeklyNoteFormat: value })); + }); + }); + } + addWeeklyNoteTemplateSetting() { + new obsidian.Setting(this.containerEl) + .setName("Weekly note template") + .setDesc("Choose the file you want to use as the template for your weekly notes") + .addText((textfield) => { + textfield.setValue(this.plugin.options.weeklyNoteTemplate); + textfield.onChange(async (value) => { + this.plugin.writeOptions(() => ({ weeklyNoteTemplate: value })); + }); + }); + } + addWeeklyNoteFolderSetting() { + new obsidian.Setting(this.containerEl) + .setName("Weekly note folder") + .setDesc("New weekly notes will be placed here") + .addText((textfield) => { + textfield.setValue(this.plugin.options.weeklyNoteFolder); + textfield.onChange(async (value) => { + this.plugin.writeOptions(() => ({ weeklyNoteFolder: value })); + }); + }); + } + addLocaleOverrideSetting() { + var _a; + const { moment } = window; + const sysLocale = (_a = navigator.language) === null || _a === void 0 ? void 0 : _a.toLowerCase(); + new obsidian.Setting(this.containerEl) + .setName("Override locale:") + .setDesc("Set this if you want to use a locale different from the default") + .addDropdown((dropdown) => { + dropdown.addOption("system-default", `Same as system (${sysLocale})`); + moment.locales().forEach((locale) => { + dropdown.addOption(locale, locale); + }); + dropdown.setValue(this.plugin.options.localeOverride); + dropdown.onChange(async (value) => { + this.plugin.writeOptions(() => ({ + localeOverride: value, + })); + }); + }); + } +} + +const classList = (obj) => { + return Object.entries(obj) + .filter(([_k, v]) => !!v) + .map(([k, _k]) => k); +}; +function clamp(num, lowerBound, upperBound) { + return Math.min(Math.max(lowerBound, num), upperBound); +} +function partition(arr, predicate) { + const pass = []; + const fail = []; + arr.forEach((elem) => { + if (predicate(elem)) { + pass.push(elem); + } + else { + fail.push(elem); + } + }); + return [pass, fail]; +} +/** + * Lookup the dateUID for a given file. It compares the filename + * to the daily and weekly note formats to find a match. + * + * @param file + */ +function getDateUIDFromFile(file) { + if (!file) { + return null; + } + // TODO: I'm not checking the path! + let date = getDateFromFile_1(file, "day"); + if (date) { + return getDateUID_1$1(date, "day"); + } + date = getDateFromFile_1(file, "week"); + if (date) { + return getDateUID_1$1(date, "week"); + } + return null; +} +function getWordCount(text) { + const spaceDelimitedChars = /A-Za-z\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0-\u08B4\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AD\uA7B0-\uA7B7\uA7F7-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC/ + .source; + const nonSpaceDelimitedWords = /\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u4E00-\u9FD5/ + .source; + const pattern = new RegExp([ + `(?:[0-9]+(?:(?:,|\\.)[0-9]+)*|[\\-${spaceDelimitedChars}])+`, + nonSpaceDelimitedWords, + ].join("|"), "g"); + return (text.match(pattern) || []).length; +} + +function createDailyNotesStore() { + let hasError = false; + const store = writable(null); + return Object.assign({ reindex: () => { + try { + const dailyNotes = getAllDailyNotes_1(); + store.set(dailyNotes); + hasError = false; + } + catch (err) { + if (!hasError) { + // Avoid error being shown multiple times + console.log("[Calendar] Failed to find daily notes folder", err); + } + store.set({}); + hasError = true; + } + } }, store); +} +function createWeeklyNotesStore() { + let hasError = false; + const store = writable(null); + return Object.assign({ reindex: () => { + try { + const weeklyNotes = getAllWeeklyNotes_1(); + store.set(weeklyNotes); + hasError = false; + } + catch (err) { + if (!hasError) { + // Avoid error being shown multiple times + console.log("[Calendar] Failed to find weekly notes folder", err); + } + store.set({}); + hasError = true; + } + } }, store); +} +const settings = writable(defaultSettings); +const dailyNotes = createDailyNotesStore(); +const weeklyNotes = createWeeklyNotesStore(); +function createSelectedFileStore() { + const store = writable(null); + return Object.assign({ setFile: (file) => { + const id = getDateUIDFromFile(file); + store.set(id); + } }, store); +} +const activeFile = createSelectedFileStore(); + +class ConfirmationModal extends obsidian.Modal { + constructor(app, config) { + super(app); + const { cta, onAccept, text, title } = config; + this.contentEl.createEl("h2", { text: title }); + this.contentEl.createEl("p", { text }); + this.contentEl.createDiv("modal-button-container", (buttonsEl) => { + buttonsEl + .createEl("button", { text: "Never mind" }) + .addEventListener("click", () => this.close()); + buttonsEl + .createEl("button", { + cls: "mod-cta", + text: cta, + }) + .addEventListener("click", async (e) => { + await onAccept(e); + this.close(); + }); + }); + } +} +function createConfirmationDialog({ cta, onAccept, text, title, }) { + new ConfirmationModal(window.app, { cta, onAccept, text, title }).open(); +} + +/** + * Create a Daily Note for a given date. + */ +async function tryToCreateDailyNote(date, inNewSplit, settings, cb) { + const { workspace } = window.app; + const { format } = getDailyNoteSettings_1(); + const filename = date.format(format); + const createFile = async () => { + const dailyNote = await createDailyNote_1(date); + const leaf = inNewSplit + ? workspace.splitActiveLeaf() + : workspace.getUnpinnedLeaf(); + await leaf.openFile(dailyNote); + cb === null || cb === void 0 ? void 0 : cb(dailyNote); + }; + if (settings.shouldConfirmBeforeCreate) { + createConfirmationDialog({ + cta: "Create", + onAccept: createFile, + text: `File ${filename} does not exist. Would you like to create it?`, + title: "New Daily Note", + }); + } + else { + await createFile(); + } +} + +/** + * Create a Weekly Note for a given date. + */ +async function tryToCreateWeeklyNote(date, inNewSplit, settings, cb) { + const { workspace } = window.app; + const { format } = getWeeklyNoteSettings_1(); + const filename = date.format(format); + const createFile = async () => { + const dailyNote = await createWeeklyNote_1(date); + const leaf = inNewSplit + ? workspace.splitActiveLeaf() + : workspace.getUnpinnedLeaf(); + await leaf.openFile(dailyNote); + cb === null || cb === void 0 ? void 0 : cb(dailyNote); + }; + if (settings.shouldConfirmBeforeCreate) { + createConfirmationDialog({ + cta: "Create", + onAccept: createFile, + text: `File ${filename} does not exist. Would you like to create it?`, + title: "New Weekly Note", + }); + } + else { + await createFile(); + } +} + +function noop() { } +function assign(tar, src) { + // @ts-ignore + for (const k in src) + tar[k] = src[k]; + return tar; +} +function is_promise(value) { + return value && typeof value === 'object' && typeof value.then === 'function'; +} +function run(fn) { + return fn(); +} +function blank_object() { + return Object.create(null); +} +function run_all(fns) { + fns.forEach(run); +} +function is_function(thing) { + return typeof thing === 'function'; +} +function safe_not_equal(a, b) { + return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function'); +} +function not_equal(a, b) { + return a != a ? b == b : a !== b; +} +function is_empty(obj) { + return Object.keys(obj).length === 0; +} +function create_slot(definition, ctx, $$scope, fn) { + if (definition) { + const slot_ctx = get_slot_context(definition, ctx, $$scope, fn); + return definition[0](slot_ctx); + } +} +function get_slot_context(definition, ctx, $$scope, fn) { + return definition[1] && fn + ? assign($$scope.ctx.slice(), definition[1](fn(ctx))) + : $$scope.ctx; +} +function get_slot_changes(definition, $$scope, dirty, fn) { + if (definition[2] && fn) { + const lets = definition[2](fn(dirty)); + if ($$scope.dirty === undefined) { + return lets; + } + if (typeof lets === 'object') { + const merged = []; + const len = Math.max($$scope.dirty.length, lets.length); + for (let i = 0; i < len; i += 1) { + merged[i] = $$scope.dirty[i] | lets[i]; + } + return merged; + } + return $$scope.dirty | lets; + } + return $$scope.dirty; +} +function update_slot(slot, slot_definition, ctx, $$scope, dirty, get_slot_changes_fn, get_slot_context_fn) { + const slot_changes = get_slot_changes(slot_definition, $$scope, dirty, get_slot_changes_fn); + if (slot_changes) { + const slot_context = get_slot_context(slot_definition, ctx, $$scope, get_slot_context_fn); + slot.p(slot_context, slot_changes); + } +} +function null_to_empty(value) { + return value == null ? '' : value; +} + +function append(target, node) { + target.appendChild(node); +} +function insert(target, node, anchor) { + target.insertBefore(node, anchor || null); +} +function detach(node) { + node.parentNode.removeChild(node); +} +function destroy_each(iterations, detaching) { + for (let i = 0; i < iterations.length; i += 1) { + if (iterations[i]) + iterations[i].d(detaching); + } +} +function element(name) { + return document.createElement(name); +} +function svg_element(name) { + return document.createElementNS('http://www.w3.org/2000/svg', name); +} +function text(data) { + return document.createTextNode(data); +} +function space() { + return text(' '); +} +function empty() { + return text(''); +} +function listen(node, event, handler, options) { + node.addEventListener(event, handler, options); + return () => node.removeEventListener(event, handler, options); +} +function attr(node, attribute, value) { + if (value == null) + node.removeAttribute(attribute); + else if (node.getAttribute(attribute) !== value) + node.setAttribute(attribute, value); +} +function set_attributes(node, attributes) { + // @ts-ignore + const descriptors = Object.getOwnPropertyDescriptors(node.__proto__); + for (const key in attributes) { + if (attributes[key] == null) { + node.removeAttribute(key); + } + else if (key === 'style') { + node.style.cssText = attributes[key]; + } + else if (key === '__value') { + node.value = node[key] = attributes[key]; + } + else if (descriptors[key] && descriptors[key].set) { + node[key] = attributes[key]; + } + else { + attr(node, key, attributes[key]); + } + } +} +function children(element) { + return Array.from(element.childNodes); +} +function set_data(text, data) { + data = '' + data; + if (text.wholeText !== data) + text.data = data; +} +function toggle_class(element, name, toggle) { + element.classList[toggle ? 'add' : 'remove'](name); +} + +let current_component; +function set_current_component(component) { + current_component = component; +} +function get_current_component() { + if (!current_component) + throw new Error('Function called outside component initialization'); + return current_component; +} + +const dirty_components = []; +const binding_callbacks = []; +const render_callbacks = []; +const flush_callbacks = []; +const resolved_promise = Promise.resolve(); +let update_scheduled = false; +function schedule_update() { + if (!update_scheduled) { + update_scheduled = true; + resolved_promise.then(flush); + } +} +function add_render_callback(fn) { + render_callbacks.push(fn); +} +let flushing = false; +const seen_callbacks = new Set(); +function flush() { + if (flushing) + return; + flushing = true; + do { + // first, call beforeUpdate functions + // and update components + for (let i = 0; i < dirty_components.length; i += 1) { + const component = dirty_components[i]; + set_current_component(component); + update(component.$$); + } + set_current_component(null); + dirty_components.length = 0; + while (binding_callbacks.length) + binding_callbacks.pop()(); + // then, once components are updated, call + // afterUpdate functions. This may cause + // subsequent updates... + for (let i = 0; i < render_callbacks.length; i += 1) { + const callback = render_callbacks[i]; + if (!seen_callbacks.has(callback)) { + // ...so guard against infinite loops + seen_callbacks.add(callback); + callback(); + } + } + render_callbacks.length = 0; + } while (dirty_components.length); + while (flush_callbacks.length) { + flush_callbacks.pop()(); + } + update_scheduled = false; + flushing = false; + seen_callbacks.clear(); +} +function update($$) { + if ($$.fragment !== null) { + $$.update(); + run_all($$.before_update); + const dirty = $$.dirty; + $$.dirty = [-1]; + $$.fragment && $$.fragment.p($$.ctx, dirty); + $$.after_update.forEach(add_render_callback); + } +} +const outroing = new Set(); +let outros; +function group_outros() { + outros = { + r: 0, + c: [], + p: outros // parent group + }; +} +function check_outros() { + if (!outros.r) { + run_all(outros.c); + } + outros = outros.p; +} +function transition_in(block, local) { + if (block && block.i) { + outroing.delete(block); + block.i(local); + } +} +function transition_out(block, local, detach, callback) { + if (block && block.o) { + if (outroing.has(block)) + return; + outroing.add(block); + outros.c.push(() => { + outroing.delete(block); + if (callback) { + if (detach) + block.d(1); + callback(); + } + }); + block.o(local); + } +} + +function handle_promise(promise, info) { + const token = info.token = {}; + function update(type, index, key, value) { + if (info.token !== token) + return; + info.resolved = value; + let child_ctx = info.ctx; + if (key !== undefined) { + child_ctx = child_ctx.slice(); + child_ctx[key] = value; + } + const block = type && (info.current = type)(child_ctx); + let needs_flush = false; + if (info.block) { + if (info.blocks) { + info.blocks.forEach((block, i) => { + if (i !== index && block) { + group_outros(); + transition_out(block, 1, 1, () => { + if (info.blocks[i] === block) { + info.blocks[i] = null; + } + }); + check_outros(); + } + }); + } + else { + info.block.d(1); + } + block.c(); + transition_in(block, 1); + block.m(info.mount(), info.anchor); + needs_flush = true; + } + info.block = block; + if (info.blocks) + info.blocks[index] = block; + if (needs_flush) { + flush(); + } + } + if (is_promise(promise)) { + const current_component = get_current_component(); + promise.then(value => { + set_current_component(current_component); + update(info.then, 1, info.value, value); + set_current_component(null); + }, error => { + set_current_component(current_component); + update(info.catch, 2, info.error, error); + set_current_component(null); + if (!info.hasCatch) { + throw error; + } + }); + // if we previously had a then/catch block, destroy it + if (info.current !== info.pending) { + update(info.pending, 0); + return true; + } + } + else { + if (info.current !== info.then) { + update(info.then, 1, info.value, promise); + return true; + } + info.resolved = promise; + } +} +function outro_and_destroy_block(block, lookup) { + transition_out(block, 1, 1, () => { + lookup.delete(block.key); + }); +} +function update_keyed_each(old_blocks, dirty, get_key, dynamic, ctx, list, lookup, node, destroy, create_each_block, next, get_context) { + let o = old_blocks.length; + let n = list.length; + let i = o; + const old_indexes = {}; + while (i--) + old_indexes[old_blocks[i].key] = i; + const new_blocks = []; + const new_lookup = new Map(); + const deltas = new Map(); + i = n; + while (i--) { + const child_ctx = get_context(ctx, list, i); + const key = get_key(child_ctx); + let block = lookup.get(key); + if (!block) { + block = create_each_block(key, child_ctx); + block.c(); + } + else if (dynamic) { + block.p(child_ctx, dirty); + } + new_lookup.set(key, new_blocks[i] = block); + if (key in old_indexes) + deltas.set(key, Math.abs(i - old_indexes[key])); + } + const will_move = new Set(); + const did_move = new Set(); + function insert(block) { + transition_in(block, 1); + block.m(node, next); + lookup.set(block.key, block); + next = block.first; + n--; + } + while (o && n) { + const new_block = new_blocks[n - 1]; + const old_block = old_blocks[o - 1]; + const new_key = new_block.key; + const old_key = old_block.key; + if (new_block === old_block) { + // do nothing + next = new_block.first; + o--; + n--; + } + else if (!new_lookup.has(old_key)) { + // remove old block + destroy(old_block, lookup); + o--; + } + else if (!lookup.has(new_key) || will_move.has(new_key)) { + insert(new_block); + } + else if (did_move.has(old_key)) { + o--; + } + else if (deltas.get(new_key) > deltas.get(old_key)) { + did_move.add(new_key); + insert(new_block); + } + else { + will_move.add(old_key); + o--; + } + } + while (o--) { + const old_block = old_blocks[o]; + if (!new_lookup.has(old_block.key)) + destroy(old_block, lookup); + } + while (n) + insert(new_blocks[n - 1]); + return new_blocks; +} + +function get_spread_update(levels, updates) { + const update = {}; + const to_null_out = {}; + const accounted_for = { $$scope: 1 }; + let i = levels.length; + while (i--) { + const o = levels[i]; + const n = updates[i]; + if (n) { + for (const key in o) { + if (!(key in n)) + to_null_out[key] = 1; + } + for (const key in n) { + if (!accounted_for[key]) { + update[key] = n[key]; + accounted_for[key] = 1; + } + } + levels[i] = n; + } + else { + for (const key in o) { + accounted_for[key] = 1; + } + } + } + for (const key in to_null_out) { + if (!(key in update)) + update[key] = undefined; + } + return update; +} +function get_spread_object(spread_props) { + return typeof spread_props === 'object' && spread_props !== null ? spread_props : {}; +} +function create_component(block) { + block && block.c(); +} +function mount_component(component, target, anchor, customElement) { + const { fragment, on_mount, on_destroy, after_update } = component.$$; + fragment && fragment.m(target, anchor); + if (!customElement) { + // onMount happens before the initial afterUpdate + add_render_callback(() => { + const new_on_destroy = on_mount.map(run).filter(is_function); + if (on_destroy) { + on_destroy.push(...new_on_destroy); + } + else { + // Edge case - component was destroyed immediately, + // most likely as a result of a binding initialising + run_all(new_on_destroy); + } + component.$$.on_mount = []; + }); + } + after_update.forEach(add_render_callback); +} +function destroy_component(component, detaching) { + const $$ = component.$$; + if ($$.fragment !== null) { + run_all($$.on_destroy); + $$.fragment && $$.fragment.d(detaching); + // TODO null out other refs, including component.$$ (but need to + // preserve final state?) + $$.on_destroy = $$.fragment = null; + $$.ctx = []; + } +} +function make_dirty(component, i) { + if (component.$$.dirty[0] === -1) { + dirty_components.push(component); + schedule_update(); + component.$$.dirty.fill(0); + } + component.$$.dirty[(i / 31) | 0] |= (1 << (i % 31)); +} +function init(component, options, instance, create_fragment, not_equal, props, dirty = [-1]) { + const parent_component = current_component; + set_current_component(component); + const $$ = component.$$ = { + fragment: null, + ctx: null, + // state + props, + update: noop, + not_equal, + bound: blank_object(), + // lifecycle + on_mount: [], + on_destroy: [], + on_disconnect: [], + before_update: [], + after_update: [], + context: new Map(parent_component ? parent_component.$$.context : []), + // everything else + callbacks: blank_object(), + dirty, + skip_bound: false + }; + let ready = false; + $$.ctx = instance + ? instance(component, options.props || {}, (i, ret, ...rest) => { + const value = rest.length ? rest[0] : ret; + if ($$.ctx && not_equal($$.ctx[i], $$.ctx[i] = value)) { + if (!$$.skip_bound && $$.bound[i]) + $$.bound[i](value); + if (ready) + make_dirty(component, i); + } + return ret; + }) + : []; + $$.update(); + ready = true; + run_all($$.before_update); + // `false` as a special case of no DOM component + $$.fragment = create_fragment ? create_fragment($$.ctx) : false; + if (options.target) { + if (options.hydrate) { + const nodes = children(options.target); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + $$.fragment && $$.fragment.l(nodes); + nodes.forEach(detach); + } + else { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + $$.fragment && $$.fragment.c(); + } + if (options.intro) + transition_in(component.$$.fragment); + mount_component(component, options.target, options.anchor, options.customElement); + flush(); + } + set_current_component(parent_component); +} +/** + * Base class for Svelte components. Used when dev=false. + */ +class SvelteComponent { + $destroy() { + destroy_component(this, 1); + this.$destroy = noop; + } + $on(type, callback) { + const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = [])); + callbacks.push(callback); + return () => { + const index = callbacks.indexOf(callback); + if (index !== -1) + callbacks.splice(index, 1); + }; + } + $set($$props) { + if (this.$$set && !is_empty($$props)) { + this.$$.skip_bound = true; + this.$$set($$props); + this.$$.skip_bound = false; + } + } +} + +/** + * dateUID is a way of weekly identifying daily/weekly/monthly notes. + * They are prefixed with the granularity to avoid ambiguity. + */ +function getDateUID(date, granularity = "day") { + const ts = date.clone().startOf(granularity).format(); + return `${granularity}-${ts}`; +} +var getDateUID_1 = getDateUID; + +/* src/components/Dot.svelte generated by Svelte v3.35.0 */ + +function add_css$5() { + var style = element("style"); + style.id = "svelte-1widvzq-style"; + style.textContent = ".dot.svelte-1widvzq,.hollow.svelte-1widvzq{display:inline-block;height:6px;width:6px;margin:0 1px}.filled.svelte-1widvzq{fill:var(--color-dot)}.active.filled.svelte-1widvzq{fill:var(--text-on-accent)}.hollow.svelte-1widvzq{fill:none;stroke:var(--color-dot)}.active.hollow.svelte-1widvzq{fill:none;stroke:var(--text-on-accent)}"; + append(document.head, style); +} + +// (14:0) {:else} +function create_else_block$1(ctx) { + let svg; + let circle; + let svg_class_value; + + return { + c() { + svg = svg_element("svg"); + circle = svg_element("circle"); + attr(circle, "cx", "3"); + attr(circle, "cy", "3"); + attr(circle, "r", "2"); + attr(svg, "class", svg_class_value = "" + (null_to_empty(`hollow ${/*className*/ ctx[0]}`) + " svelte-1widvzq")); + attr(svg, "viewBox", "0 0 6 6"); + attr(svg, "xmlns", "http://www.w3.org/2000/svg"); + toggle_class(svg, "active", /*isActive*/ ctx[2]); + }, + m(target, anchor) { + insert(target, svg, anchor); + append(svg, circle); + }, + p(ctx, dirty) { + if (dirty & /*className*/ 1 && svg_class_value !== (svg_class_value = "" + (null_to_empty(`hollow ${/*className*/ ctx[0]}`) + " svelte-1widvzq"))) { + attr(svg, "class", svg_class_value); + } + + if (dirty & /*className, isActive*/ 5) { + toggle_class(svg, "active", /*isActive*/ ctx[2]); + } + }, + d(detaching) { + if (detaching) detach(svg); + } + }; +} + +// (6:0) {#if isFilled} +function create_if_block$2(ctx) { + let svg; + let circle; + let svg_class_value; + + return { + c() { + svg = svg_element("svg"); + circle = svg_element("circle"); + attr(circle, "cx", "3"); + attr(circle, "cy", "3"); + attr(circle, "r", "2"); + attr(svg, "class", svg_class_value = "" + (null_to_empty(`dot filled ${/*className*/ ctx[0]}`) + " svelte-1widvzq")); + attr(svg, "viewBox", "0 0 6 6"); + attr(svg, "xmlns", "http://www.w3.org/2000/svg"); + toggle_class(svg, "active", /*isActive*/ ctx[2]); + }, + m(target, anchor) { + insert(target, svg, anchor); + append(svg, circle); + }, + p(ctx, dirty) { + if (dirty & /*className*/ 1 && svg_class_value !== (svg_class_value = "" + (null_to_empty(`dot filled ${/*className*/ ctx[0]}`) + " svelte-1widvzq"))) { + attr(svg, "class", svg_class_value); + } + + if (dirty & /*className, isActive*/ 5) { + toggle_class(svg, "active", /*isActive*/ ctx[2]); + } + }, + d(detaching) { + if (detaching) detach(svg); + } + }; +} + +function create_fragment$6(ctx) { + let if_block_anchor; + + function select_block_type(ctx, dirty) { + if (/*isFilled*/ ctx[1]) return create_if_block$2; + return create_else_block$1; + } + + let current_block_type = select_block_type(ctx); + let if_block = current_block_type(ctx); + + return { + c() { + if_block.c(); + if_block_anchor = empty(); + }, + m(target, anchor) { + if_block.m(target, anchor); + insert(target, if_block_anchor, anchor); + }, + p(ctx, [dirty]) { + if (current_block_type === (current_block_type = select_block_type(ctx)) && if_block) { + if_block.p(ctx, dirty); + } else { + if_block.d(1); + if_block = current_block_type(ctx); + + if (if_block) { + if_block.c(); + if_block.m(if_block_anchor.parentNode, if_block_anchor); + } + } + }, + i: noop, + o: noop, + d(detaching) { + if_block.d(detaching); + if (detaching) detach(if_block_anchor); + } + }; +} + +function instance$6($$self, $$props, $$invalidate) { + let { className = "" } = $$props; + let { isFilled } = $$props; + let { isActive } = $$props; + + $$self.$$set = $$props => { + if ("className" in $$props) $$invalidate(0, className = $$props.className); + if ("isFilled" in $$props) $$invalidate(1, isFilled = $$props.isFilled); + if ("isActive" in $$props) $$invalidate(2, isActive = $$props.isActive); + }; + + return [className, isFilled, isActive]; +} + +class Dot extends SvelteComponent { + constructor(options) { + super(); + if (!document.getElementById("svelte-1widvzq-style")) add_css$5(); + init(this, options, instance$6, create_fragment$6, safe_not_equal, { className: 0, isFilled: 1, isActive: 2 }); + } +} + +/* src/components/MetadataResolver.svelte generated by Svelte v3.35.0 */ + +const get_default_slot_changes_1 = dirty => ({}); +const get_default_slot_context_1 = ctx => ({ metadata: null }); +const get_default_slot_changes = dirty => ({ metadata: dirty & /*metadata*/ 1 }); +const get_default_slot_context = ctx => ({ metadata: /*resolvedMeta*/ ctx[3] }); + +// (11:0) {:else} +function create_else_block(ctx) { + let current; + const default_slot_template = /*#slots*/ ctx[2].default; + const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[1], get_default_slot_context_1); + + return { + c() { + if (default_slot) default_slot.c(); + }, + m(target, anchor) { + if (default_slot) { + default_slot.m(target, anchor); + } + + current = true; + }, + p(ctx, dirty) { + if (default_slot) { + if (default_slot.p && dirty & /*$$scope*/ 2) { + update_slot(default_slot, default_slot_template, ctx, /*$$scope*/ ctx[1], dirty, get_default_slot_changes_1, get_default_slot_context_1); + } + } + }, + i(local) { + if (current) return; + transition_in(default_slot, local); + current = true; + }, + o(local) { + transition_out(default_slot, local); + current = false; + }, + d(detaching) { + if (default_slot) default_slot.d(detaching); + } + }; +} + +// (7:0) {#if metadata} +function create_if_block$1(ctx) { + let await_block_anchor; + let promise; + let current; + + let info = { + ctx, + current: null, + token: null, + hasCatch: false, + pending: create_pending_block, + then: create_then_block, + catch: create_catch_block, + value: 3, + blocks: [,,,] + }; + + handle_promise(promise = /*metadata*/ ctx[0], info); + + return { + c() { + await_block_anchor = empty(); + info.block.c(); + }, + m(target, anchor) { + insert(target, await_block_anchor, anchor); + info.block.m(target, info.anchor = anchor); + info.mount = () => await_block_anchor.parentNode; + info.anchor = await_block_anchor; + current = true; + }, + p(new_ctx, dirty) { + ctx = new_ctx; + info.ctx = ctx; + + if (dirty & /*metadata*/ 1 && promise !== (promise = /*metadata*/ ctx[0]) && handle_promise(promise, info)) ; else { + const child_ctx = ctx.slice(); + child_ctx[3] = info.resolved; + info.block.p(child_ctx, dirty); + } + }, + i(local) { + if (current) return; + transition_in(info.block); + current = true; + }, + o(local) { + for (let i = 0; i < 3; i += 1) { + const block = info.blocks[i]; + transition_out(block); + } + + current = false; + }, + d(detaching) { + if (detaching) detach(await_block_anchor); + info.block.d(detaching); + info.token = null; + info = null; + } + }; +} + +// (1:0) {#if metadata} +function create_catch_block(ctx) { + return { + c: noop, + m: noop, + p: noop, + i: noop, + o: noop, + d: noop + }; +} + +// (8:37) ; export let metadata; {#if metadata} +function create_pending_block(ctx) { + return { + c: noop, + m: noop, + p: noop, + i: noop, + o: noop, + d: noop + }; +} + +function create_fragment$5(ctx) { + let current_block_type_index; + let if_block; + let if_block_anchor; + let current; + const if_block_creators = [create_if_block$1, create_else_block]; + const if_blocks = []; + + function select_block_type(ctx, dirty) { + if (/*metadata*/ ctx[0]) return 0; + return 1; + } + + current_block_type_index = select_block_type(ctx); + if_block = if_blocks[current_block_type_index] = if_block_creators[current_block_type_index](ctx); + + return { + c() { + if_block.c(); + if_block_anchor = empty(); + }, + m(target, anchor) { + if_blocks[current_block_type_index].m(target, anchor); + insert(target, if_block_anchor, anchor); + current = true; + }, + p(ctx, [dirty]) { + let previous_block_index = current_block_type_index; + current_block_type_index = select_block_type(ctx); + + if (current_block_type_index === previous_block_index) { + if_blocks[current_block_type_index].p(ctx, dirty); + } else { + group_outros(); + + transition_out(if_blocks[previous_block_index], 1, 1, () => { + if_blocks[previous_block_index] = null; + }); + + check_outros(); + if_block = if_blocks[current_block_type_index]; + + if (!if_block) { + if_block = if_blocks[current_block_type_index] = if_block_creators[current_block_type_index](ctx); + if_block.c(); + } else { + if_block.p(ctx, dirty); + } + + transition_in(if_block, 1); + if_block.m(if_block_anchor.parentNode, if_block_anchor); + } + }, + i(local) { + if (current) return; + transition_in(if_block); + current = true; + }, + o(local) { + transition_out(if_block); + current = false; + }, + d(detaching) { + if_blocks[current_block_type_index].d(detaching); + if (detaching) detach(if_block_anchor); + } + }; +} + +function instance$5($$self, $$props, $$invalidate) { + let { $$slots: slots = {}, $$scope } = $$props; + + let { metadata } = $$props; + + $$self.$$set = $$props => { + if ("metadata" in $$props) $$invalidate(0, metadata = $$props.metadata); + if ("$$scope" in $$props) $$invalidate(1, $$scope = $$props.$$scope); + }; + + return [metadata, $$scope, slots]; +} + +class MetadataResolver extends SvelteComponent { + constructor(options) { + super(); + init(this, options, instance$5, create_fragment$5, not_equal, { metadata: 0 }); + } +} + +function isMacOS() { + return navigator.appVersion.indexOf("Mac") !== -1; +} +function isMetaPressed(e) { + return isMacOS() ? e.metaKey : e.ctrlKey; +} +function getDaysOfWeek(..._args) { + return window.moment.weekdaysShort(true); +} +function isWeekend(date) { + return date.isoWeekday() === 6 || date.isoWeekday() === 7; +} +function getStartOfWeek(days) { + return days[0].weekday(0); +} +/** + * Generate a 2D array of daily information to power + * the calendar view. + */ +function getMonth(displayedMonth, ..._args) { + const locale = window.moment().locale(); + const month = []; + let week; + const startOfMonth = displayedMonth.clone().locale(locale).date(1); + const startOffset = startOfMonth.weekday(); + let date = startOfMonth.clone().subtract(startOffset, "days"); + for (let _day = 0; _day < 42; _day++) { + if (_day % 7 === 0) { + week = { + days: [], + weekNum: date.week(), + }; + month.push(week); + } + week.days.push(date); + date = date.clone().add(1, "days"); + } + return month; +} + +/* src/components/Day.svelte generated by Svelte v3.35.0 */ + +function add_css$4() { + var style = element("style"); + style.id = "svelte-q3wqg9-style"; + style.textContent = ".day.svelte-q3wqg9{background-color:var(--color-background-day);border-radius:4px;color:var(--color-text-day);cursor:pointer;font-size:0.8em;height:100%;padding:4px;position:relative;text-align:center;transition:background-color 0.1s ease-in, color 0.1s ease-in;vertical-align:baseline}.day.svelte-q3wqg9:hover{background-color:var(--interactive-hover)}.day.active.svelte-q3wqg9:hover{background-color:var(--interactive-accent-hover)}.adjacent-month.svelte-q3wqg9{opacity:0.25}.today.svelte-q3wqg9{color:var(--color-text-today)}.day.svelte-q3wqg9:active,.active.svelte-q3wqg9,.active.today.svelte-q3wqg9{color:var(--text-on-accent);background-color:var(--interactive-accent)}.dot-container.svelte-q3wqg9{display:flex;flex-wrap:wrap;justify-content:center;line-height:6px;min-height:6px}"; + append(document.head, style); +} + +function get_each_context$2(ctx, list, i) { + const child_ctx = ctx.slice(); + child_ctx[11] = list[i]; + return child_ctx; +} + +// (36:8) {#each metadata.dots as dot} +function create_each_block$2(ctx) { + let dot; + let current; + const dot_spread_levels = [/*dot*/ ctx[11]]; + let dot_props = {}; + + for (let i = 0; i < dot_spread_levels.length; i += 1) { + dot_props = assign(dot_props, dot_spread_levels[i]); + } + + dot = new Dot({ props: dot_props }); + + return { + c() { + create_component(dot.$$.fragment); + }, + m(target, anchor) { + mount_component(dot, target, anchor); + current = true; + }, + p(ctx, dirty) { + const dot_changes = (dirty & /*metadata*/ 128) + ? get_spread_update(dot_spread_levels, [get_spread_object(/*dot*/ ctx[11])]) + : {}; + + dot.$set(dot_changes); + }, + i(local) { + if (current) return; + transition_in(dot.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(dot.$$.fragment, local); + current = false; + }, + d(detaching) { + destroy_component(dot, detaching); + } + }; +} + +// (22:2) +function create_default_slot$1(ctx) { + let div1; + let t0_value = /*date*/ ctx[0].format("D") + ""; + let t0; + let t1; + let div0; + let div1_class_value; + let current; + let mounted; + let dispose; + let each_value = /*metadata*/ ctx[7].dots; + let each_blocks = []; + + for (let i = 0; i < each_value.length; i += 1) { + each_blocks[i] = create_each_block$2(get_each_context$2(ctx, each_value, i)); + } + + const out = i => transition_out(each_blocks[i], 1, 1, () => { + each_blocks[i] = null; + }); + + let div1_levels = [ + { + class: div1_class_value = `day ${/*metadata*/ ctx[7].classes.join(" ")}` + }, + /*metadata*/ ctx[7].dataAttributes || {} + ]; + + let div1_data = {}; + + for (let i = 0; i < div1_levels.length; i += 1) { + div1_data = assign(div1_data, div1_levels[i]); + } + + return { + c() { + div1 = element("div"); + t0 = text(t0_value); + t1 = space(); + div0 = element("div"); + + for (let i = 0; i < each_blocks.length; i += 1) { + each_blocks[i].c(); + } + + attr(div0, "class", "dot-container svelte-q3wqg9"); + set_attributes(div1, div1_data); + toggle_class(div1, "active", /*selectedId*/ ctx[6] === getDateUID_1(/*date*/ ctx[0], "day")); + toggle_class(div1, "adjacent-month", !/*date*/ ctx[0].isSame(/*displayedMonth*/ ctx[5], "month")); + toggle_class(div1, "today", /*date*/ ctx[0].isSame(/*today*/ ctx[4], "day")); + toggle_class(div1, "svelte-q3wqg9", true); + }, + m(target, anchor) { + insert(target, div1, anchor); + append(div1, t0); + append(div1, t1); + append(div1, div0); + + for (let i = 0; i < each_blocks.length; i += 1) { + each_blocks[i].m(div0, null); + } + + current = true; + + if (!mounted) { + dispose = [ + listen(div1, "click", function () { + if (is_function(/*onClick*/ ctx[2] && /*click_handler*/ ctx[8])) (/*onClick*/ ctx[2] && /*click_handler*/ ctx[8]).apply(this, arguments); + }), + listen(div1, "contextmenu", function () { + if (is_function(/*onContextMenu*/ ctx[3] && /*contextmenu_handler*/ ctx[9])) (/*onContextMenu*/ ctx[3] && /*contextmenu_handler*/ ctx[9]).apply(this, arguments); + }), + listen(div1, "pointerover", function () { + if (is_function(/*onHover*/ ctx[1] && /*pointerover_handler*/ ctx[10])) (/*onHover*/ ctx[1] && /*pointerover_handler*/ ctx[10]).apply(this, arguments); + }) + ]; + + mounted = true; + } + }, + p(new_ctx, dirty) { + ctx = new_ctx; + if ((!current || dirty & /*date*/ 1) && t0_value !== (t0_value = /*date*/ ctx[0].format("D") + "")) set_data(t0, t0_value); + + if (dirty & /*metadata*/ 128) { + each_value = /*metadata*/ ctx[7].dots; + let i; + + for (i = 0; i < each_value.length; i += 1) { + const child_ctx = get_each_context$2(ctx, each_value, i); + + if (each_blocks[i]) { + each_blocks[i].p(child_ctx, dirty); + transition_in(each_blocks[i], 1); + } else { + each_blocks[i] = create_each_block$2(child_ctx); + each_blocks[i].c(); + transition_in(each_blocks[i], 1); + each_blocks[i].m(div0, null); + } + } + + group_outros(); + + for (i = each_value.length; i < each_blocks.length; i += 1) { + out(i); + } + + check_outros(); + } + + set_attributes(div1, div1_data = get_spread_update(div1_levels, [ + (!current || dirty & /*metadata*/ 128 && div1_class_value !== (div1_class_value = `day ${/*metadata*/ ctx[7].classes.join(" ")}`)) && { class: div1_class_value }, + dirty & /*metadata*/ 128 && (/*metadata*/ ctx[7].dataAttributes || {}) + ])); + + toggle_class(div1, "active", /*selectedId*/ ctx[6] === getDateUID_1(/*date*/ ctx[0], "day")); + toggle_class(div1, "adjacent-month", !/*date*/ ctx[0].isSame(/*displayedMonth*/ ctx[5], "month")); + toggle_class(div1, "today", /*date*/ ctx[0].isSame(/*today*/ ctx[4], "day")); + toggle_class(div1, "svelte-q3wqg9", true); + }, + i(local) { + if (current) return; + + for (let i = 0; i < each_value.length; i += 1) { + transition_in(each_blocks[i]); + } + + current = true; + }, + o(local) { + each_blocks = each_blocks.filter(Boolean); + + for (let i = 0; i < each_blocks.length; i += 1) { + transition_out(each_blocks[i]); + } + + current = false; + }, + d(detaching) { + if (detaching) detach(div1); + destroy_each(each_blocks, detaching); + mounted = false; + run_all(dispose); + } + }; +} + +function create_fragment$4(ctx) { + let td; + let metadataresolver; + let current; + + metadataresolver = new MetadataResolver({ + props: { + metadata: /*metadata*/ ctx[7], + $$slots: { + default: [ + create_default_slot$1, + ({ metadata }) => ({ 7: metadata }), + ({ metadata }) => metadata ? 128 : 0 + ] + }, + $$scope: { ctx } + } + }); + + return { + c() { + td = element("td"); + create_component(metadataresolver.$$.fragment); + }, + m(target, anchor) { + insert(target, td, anchor); + mount_component(metadataresolver, td, null); + current = true; + }, + p(ctx, [dirty]) { + const metadataresolver_changes = {}; + if (dirty & /*metadata*/ 128) metadataresolver_changes.metadata = /*metadata*/ ctx[7]; + + if (dirty & /*$$scope, metadata, selectedId, date, displayedMonth, today, onClick, onContextMenu, onHover*/ 16639) { + metadataresolver_changes.$$scope = { dirty, ctx }; + } + + metadataresolver.$set(metadataresolver_changes); + }, + i(local) { + if (current) return; + transition_in(metadataresolver.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(metadataresolver.$$.fragment, local); + current = false; + }, + d(detaching) { + if (detaching) detach(td); + destroy_component(metadataresolver); + } + }; +} + +function instance$4($$self, $$props, $$invalidate) { + + + let { date } = $$props; + let { metadata } = $$props; + let { onHover } = $$props; + let { onClick } = $$props; + let { onContextMenu } = $$props; + let { today } = $$props; + let { displayedMonth = null } = $$props; + let { selectedId = null } = $$props; + const click_handler = e => onClick(date, isMetaPressed(e)); + const contextmenu_handler = e => onContextMenu(date, e); + const pointerover_handler = e => onHover(date, e.target, isMetaPressed(e)); + + $$self.$$set = $$props => { + if ("date" in $$props) $$invalidate(0, date = $$props.date); + if ("metadata" in $$props) $$invalidate(7, metadata = $$props.metadata); + if ("onHover" in $$props) $$invalidate(1, onHover = $$props.onHover); + if ("onClick" in $$props) $$invalidate(2, onClick = $$props.onClick); + if ("onContextMenu" in $$props) $$invalidate(3, onContextMenu = $$props.onContextMenu); + if ("today" in $$props) $$invalidate(4, today = $$props.today); + if ("displayedMonth" in $$props) $$invalidate(5, displayedMonth = $$props.displayedMonth); + if ("selectedId" in $$props) $$invalidate(6, selectedId = $$props.selectedId); + }; + + return [ + date, + onHover, + onClick, + onContextMenu, + today, + displayedMonth, + selectedId, + metadata, + click_handler, + contextmenu_handler, + pointerover_handler + ]; +} + +class Day extends SvelteComponent { + constructor(options) { + super(); + if (!document.getElementById("svelte-q3wqg9-style")) add_css$4(); + + init(this, options, instance$4, create_fragment$4, not_equal, { + date: 0, + metadata: 7, + onHover: 1, + onClick: 2, + onContextMenu: 3, + today: 4, + displayedMonth: 5, + selectedId: 6 + }); + } +} + +/* src/components/Arrow.svelte generated by Svelte v3.35.0 */ + +function add_css$3() { + var style = element("style"); + style.id = "svelte-156w7na-style"; + style.textContent = ".arrow.svelte-156w7na.svelte-156w7na{align-items:center;cursor:pointer;display:flex;justify-content:center;width:24px}.arrow.is-mobile.svelte-156w7na.svelte-156w7na{width:32px}.right.svelte-156w7na.svelte-156w7na{transform:rotate(180deg)}.arrow.svelte-156w7na svg.svelte-156w7na{color:var(--color-arrow);height:16px;width:16px}"; + append(document.head, style); +} + +function create_fragment$3(ctx) { + let div; + let svg; + let path; + let mounted; + let dispose; + + return { + c() { + div = element("div"); + svg = svg_element("svg"); + path = svg_element("path"); + attr(path, "fill", "currentColor"); + attr(path, "d", "M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z"); + attr(svg, "focusable", "false"); + attr(svg, "role", "img"); + attr(svg, "xmlns", "http://www.w3.org/2000/svg"); + attr(svg, "viewBox", "0 0 320 512"); + attr(svg, "class", "svelte-156w7na"); + attr(div, "class", "arrow svelte-156w7na"); + attr(div, "aria-label", /*tooltip*/ ctx[1]); + toggle_class(div, "is-mobile", /*isMobile*/ ctx[3]); + toggle_class(div, "right", /*direction*/ ctx[2] === "right"); + }, + m(target, anchor) { + insert(target, div, anchor); + append(div, svg); + append(svg, path); + + if (!mounted) { + dispose = listen(div, "click", function () { + if (is_function(/*onClick*/ ctx[0])) /*onClick*/ ctx[0].apply(this, arguments); + }); + + mounted = true; + } + }, + p(new_ctx, [dirty]) { + ctx = new_ctx; + + if (dirty & /*tooltip*/ 2) { + attr(div, "aria-label", /*tooltip*/ ctx[1]); + } + + if (dirty & /*direction*/ 4) { + toggle_class(div, "right", /*direction*/ ctx[2] === "right"); + } + }, + i: noop, + o: noop, + d(detaching) { + if (detaching) detach(div); + mounted = false; + dispose(); + } + }; +} + +function instance$3($$self, $$props, $$invalidate) { + let { onClick } = $$props; + let { tooltip } = $$props; + let { direction } = $$props; + + // eslint-disable-next-line @typescript-eslint/no-explicit-any + let isMobile = window.app.isMobile; + + $$self.$$set = $$props => { + if ("onClick" in $$props) $$invalidate(0, onClick = $$props.onClick); + if ("tooltip" in $$props) $$invalidate(1, tooltip = $$props.tooltip); + if ("direction" in $$props) $$invalidate(2, direction = $$props.direction); + }; + + return [onClick, tooltip, direction, isMobile]; +} + +class Arrow extends SvelteComponent { + constructor(options) { + super(); + if (!document.getElementById("svelte-156w7na-style")) add_css$3(); + init(this, options, instance$3, create_fragment$3, safe_not_equal, { onClick: 0, tooltip: 1, direction: 2 }); + } +} + +/* src/components/Nav.svelte generated by Svelte v3.35.0 */ + +function add_css$2() { + var style = element("style"); + style.id = "svelte-1vwr9dd-style"; + style.textContent = ".nav.svelte-1vwr9dd.svelte-1vwr9dd{align-items:center;display:flex;margin:0.6em 0 1em;padding:0 8px;width:100%}.nav.is-mobile.svelte-1vwr9dd.svelte-1vwr9dd{padding:0}.title.svelte-1vwr9dd.svelte-1vwr9dd{color:var(--color-text-title);font-size:1.5em;margin:0}.is-mobile.svelte-1vwr9dd .title.svelte-1vwr9dd{font-size:1.3em}.month.svelte-1vwr9dd.svelte-1vwr9dd{font-weight:500;text-transform:capitalize}.year.svelte-1vwr9dd.svelte-1vwr9dd{color:var(--interactive-accent)}.right-nav.svelte-1vwr9dd.svelte-1vwr9dd{display:flex;justify-content:center;margin-left:auto}.reset-button.svelte-1vwr9dd.svelte-1vwr9dd{cursor:pointer;border-radius:4px;color:var(--text-muted);font-size:0.7em;font-weight:600;letter-spacing:1px;margin:0 4px;padding:0px 4px;text-transform:uppercase}.is-mobile.svelte-1vwr9dd .reset-button.svelte-1vwr9dd{display:none}"; + append(document.head, style); +} + +function create_fragment$2(ctx) { + let div2; + let h3; + let span0; + let t0_value = /*displayedMonth*/ ctx[0].format("MMM") + ""; + let t0; + let t1; + let span1; + let t2_value = /*displayedMonth*/ ctx[0].format("YYYY") + ""; + let t2; + let t3; + let div1; + let arrow0; + let t4; + let div0; + let t6; + let arrow1; + let current; + let mounted; + let dispose; + + arrow0 = new Arrow({ + props: { + direction: "left", + onClick: /*decrementDisplayedMonth*/ ctx[3], + tooltip: "Previous Month" + } + }); + + arrow1 = new Arrow({ + props: { + direction: "right", + onClick: /*incrementDisplayedMonth*/ ctx[2], + tooltip: "Next Month" + } + }); + + return { + c() { + div2 = element("div"); + h3 = element("h3"); + span0 = element("span"); + t0 = text(t0_value); + t1 = space(); + span1 = element("span"); + t2 = text(t2_value); + t3 = space(); + div1 = element("div"); + create_component(arrow0.$$.fragment); + t4 = space(); + div0 = element("div"); + div0.textContent = `${/*todayDisplayStr*/ ctx[4]}`; + t6 = space(); + create_component(arrow1.$$.fragment); + attr(span0, "class", "month svelte-1vwr9dd"); + attr(span1, "class", "year svelte-1vwr9dd"); + attr(h3, "class", "title svelte-1vwr9dd"); + attr(div0, "class", "reset-button svelte-1vwr9dd"); + attr(div1, "class", "right-nav svelte-1vwr9dd"); + attr(div2, "class", "nav svelte-1vwr9dd"); + toggle_class(div2, "is-mobile", /*isMobile*/ ctx[5]); + }, + m(target, anchor) { + insert(target, div2, anchor); + append(div2, h3); + append(h3, span0); + append(span0, t0); + append(h3, t1); + append(h3, span1); + append(span1, t2); + append(div2, t3); + append(div2, div1); + mount_component(arrow0, div1, null); + append(div1, t4); + append(div1, div0); + append(div1, t6); + mount_component(arrow1, div1, null); + current = true; + + if (!mounted) { + dispose = [ + listen(h3, "click", function () { + if (is_function(/*resetDisplayedMonth*/ ctx[1])) /*resetDisplayedMonth*/ ctx[1].apply(this, arguments); + }), + listen(div0, "click", function () { + if (is_function(/*resetDisplayedMonth*/ ctx[1])) /*resetDisplayedMonth*/ ctx[1].apply(this, arguments); + }) + ]; + + mounted = true; + } + }, + p(new_ctx, [dirty]) { + ctx = new_ctx; + if ((!current || dirty & /*displayedMonth*/ 1) && t0_value !== (t0_value = /*displayedMonth*/ ctx[0].format("MMM") + "")) set_data(t0, t0_value); + if ((!current || dirty & /*displayedMonth*/ 1) && t2_value !== (t2_value = /*displayedMonth*/ ctx[0].format("YYYY") + "")) set_data(t2, t2_value); + const arrow0_changes = {}; + if (dirty & /*decrementDisplayedMonth*/ 8) arrow0_changes.onClick = /*decrementDisplayedMonth*/ ctx[3]; + arrow0.$set(arrow0_changes); + const arrow1_changes = {}; + if (dirty & /*incrementDisplayedMonth*/ 4) arrow1_changes.onClick = /*incrementDisplayedMonth*/ ctx[2]; + arrow1.$set(arrow1_changes); + }, + i(local) { + if (current) return; + transition_in(arrow0.$$.fragment, local); + transition_in(arrow1.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(arrow0.$$.fragment, local); + transition_out(arrow1.$$.fragment, local); + current = false; + }, + d(detaching) { + if (detaching) detach(div2); + destroy_component(arrow0); + destroy_component(arrow1); + mounted = false; + run_all(dispose); + } + }; +} + +function instance$2($$self, $$props, $$invalidate) { + + let { displayedMonth } = $$props; + let { today } = $$props; + let { resetDisplayedMonth } = $$props; + let { incrementDisplayedMonth } = $$props; + let { decrementDisplayedMonth } = $$props; + + // Get the word 'Today' but localized to the current language + const todayDisplayStr = today.calendar().split(/\d|\s/)[0]; + + // eslint-disable-next-line @typescript-eslint/no-explicit-any + let isMobile = window.app.isMobile; + + $$self.$$set = $$props => { + if ("displayedMonth" in $$props) $$invalidate(0, displayedMonth = $$props.displayedMonth); + if ("today" in $$props) $$invalidate(6, today = $$props.today); + if ("resetDisplayedMonth" in $$props) $$invalidate(1, resetDisplayedMonth = $$props.resetDisplayedMonth); + if ("incrementDisplayedMonth" in $$props) $$invalidate(2, incrementDisplayedMonth = $$props.incrementDisplayedMonth); + if ("decrementDisplayedMonth" in $$props) $$invalidate(3, decrementDisplayedMonth = $$props.decrementDisplayedMonth); + }; + + return [ + displayedMonth, + resetDisplayedMonth, + incrementDisplayedMonth, + decrementDisplayedMonth, + todayDisplayStr, + isMobile, + today + ]; +} + +class Nav extends SvelteComponent { + constructor(options) { + super(); + if (!document.getElementById("svelte-1vwr9dd-style")) add_css$2(); + + init(this, options, instance$2, create_fragment$2, safe_not_equal, { + displayedMonth: 0, + today: 6, + resetDisplayedMonth: 1, + incrementDisplayedMonth: 2, + decrementDisplayedMonth: 3 + }); + } +} + +/* src/components/WeekNum.svelte generated by Svelte v3.35.0 */ + +function add_css$1() { + var style = element("style"); + style.id = "svelte-egt0yd-style"; + style.textContent = "td.svelte-egt0yd{border-right:1px solid var(--background-modifier-border)}.week-num.svelte-egt0yd{background-color:var(--color-background-weeknum);border-radius:4px;color:var(--color-text-weeknum);cursor:pointer;font-size:0.65em;height:100%;padding:4px;text-align:center;transition:background-color 0.1s ease-in, color 0.1s ease-in;vertical-align:baseline}.week-num.svelte-egt0yd:hover{background-color:var(--interactive-hover)}.week-num.active.svelte-egt0yd:hover{background-color:var(--interactive-accent-hover)}.active.svelte-egt0yd{color:var(--text-on-accent);background-color:var(--interactive-accent)}.dot-container.svelte-egt0yd{display:flex;flex-wrap:wrap;justify-content:center;line-height:6px;min-height:6px}"; + append(document.head, style); +} + +function get_each_context$1(ctx, list, i) { + const child_ctx = ctx.slice(); + child_ctx[11] = list[i]; + return child_ctx; +} + +// (35:8) {#each metadata.dots as dot} +function create_each_block$1(ctx) { + let dot; + let current; + const dot_spread_levels = [/*dot*/ ctx[11]]; + let dot_props = {}; + + for (let i = 0; i < dot_spread_levels.length; i += 1) { + dot_props = assign(dot_props, dot_spread_levels[i]); + } + + dot = new Dot({ props: dot_props }); + + return { + c() { + create_component(dot.$$.fragment); + }, + m(target, anchor) { + mount_component(dot, target, anchor); + current = true; + }, + p(ctx, dirty) { + const dot_changes = (dirty & /*metadata*/ 64) + ? get_spread_update(dot_spread_levels, [get_spread_object(/*dot*/ ctx[11])]) + : {}; + + dot.$set(dot_changes); + }, + i(local) { + if (current) return; + transition_in(dot.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(dot.$$.fragment, local); + current = false; + }, + d(detaching) { + destroy_component(dot, detaching); + } + }; +} + +// (24:2) +function create_default_slot(ctx) { + let div1; + let t0; + let t1; + let div0; + let div1_class_value; + let current; + let mounted; + let dispose; + let each_value = /*metadata*/ ctx[6].dots; + let each_blocks = []; + + for (let i = 0; i < each_value.length; i += 1) { + each_blocks[i] = create_each_block$1(get_each_context$1(ctx, each_value, i)); + } + + const out = i => transition_out(each_blocks[i], 1, 1, () => { + each_blocks[i] = null; + }); + + return { + c() { + div1 = element("div"); + t0 = text(/*weekNum*/ ctx[0]); + t1 = space(); + div0 = element("div"); + + for (let i = 0; i < each_blocks.length; i += 1) { + each_blocks[i].c(); + } + + attr(div0, "class", "dot-container svelte-egt0yd"); + attr(div1, "class", div1_class_value = "" + (null_to_empty(`week-num ${/*metadata*/ ctx[6].classes.join(" ")}`) + " svelte-egt0yd")); + toggle_class(div1, "active", /*selectedId*/ ctx[5] === getDateUID_1(/*days*/ ctx[1][0], "week")); + }, + m(target, anchor) { + insert(target, div1, anchor); + append(div1, t0); + append(div1, t1); + append(div1, div0); + + for (let i = 0; i < each_blocks.length; i += 1) { + each_blocks[i].m(div0, null); + } + + current = true; + + if (!mounted) { + dispose = [ + listen(div1, "click", function () { + if (is_function(/*onClick*/ ctx[3] && /*click_handler*/ ctx[8])) (/*onClick*/ ctx[3] && /*click_handler*/ ctx[8]).apply(this, arguments); + }), + listen(div1, "contextmenu", function () { + if (is_function(/*onContextMenu*/ ctx[4] && /*contextmenu_handler*/ ctx[9])) (/*onContextMenu*/ ctx[4] && /*contextmenu_handler*/ ctx[9]).apply(this, arguments); + }), + listen(div1, "pointerover", function () { + if (is_function(/*onHover*/ ctx[2] && /*pointerover_handler*/ ctx[10])) (/*onHover*/ ctx[2] && /*pointerover_handler*/ ctx[10]).apply(this, arguments); + }) + ]; + + mounted = true; + } + }, + p(new_ctx, dirty) { + ctx = new_ctx; + if (!current || dirty & /*weekNum*/ 1) set_data(t0, /*weekNum*/ ctx[0]); + + if (dirty & /*metadata*/ 64) { + each_value = /*metadata*/ ctx[6].dots; + let i; + + for (i = 0; i < each_value.length; i += 1) { + const child_ctx = get_each_context$1(ctx, each_value, i); + + if (each_blocks[i]) { + each_blocks[i].p(child_ctx, dirty); + transition_in(each_blocks[i], 1); + } else { + each_blocks[i] = create_each_block$1(child_ctx); + each_blocks[i].c(); + transition_in(each_blocks[i], 1); + each_blocks[i].m(div0, null); + } + } + + group_outros(); + + for (i = each_value.length; i < each_blocks.length; i += 1) { + out(i); + } + + check_outros(); + } + + if (!current || dirty & /*metadata*/ 64 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`week-num ${/*metadata*/ ctx[6].classes.join(" ")}`) + " svelte-egt0yd"))) { + attr(div1, "class", div1_class_value); + } + + if (dirty & /*metadata, selectedId, getDateUID, days*/ 98) { + toggle_class(div1, "active", /*selectedId*/ ctx[5] === getDateUID_1(/*days*/ ctx[1][0], "week")); + } + }, + i(local) { + if (current) return; + + for (let i = 0; i < each_value.length; i += 1) { + transition_in(each_blocks[i]); + } + + current = true; + }, + o(local) { + each_blocks = each_blocks.filter(Boolean); + + for (let i = 0; i < each_blocks.length; i += 1) { + transition_out(each_blocks[i]); + } + + current = false; + }, + d(detaching) { + if (detaching) detach(div1); + destroy_each(each_blocks, detaching); + mounted = false; + run_all(dispose); + } + }; +} + +function create_fragment$1(ctx) { + let td; + let metadataresolver; + let current; + + metadataresolver = new MetadataResolver({ + props: { + metadata: /*metadata*/ ctx[6], + $$slots: { + default: [ + create_default_slot, + ({ metadata }) => ({ 6: metadata }), + ({ metadata }) => metadata ? 64 : 0 + ] + }, + $$scope: { ctx } + } + }); + + return { + c() { + td = element("td"); + create_component(metadataresolver.$$.fragment); + attr(td, "class", "svelte-egt0yd"); + }, + m(target, anchor) { + insert(target, td, anchor); + mount_component(metadataresolver, td, null); + current = true; + }, + p(ctx, [dirty]) { + const metadataresolver_changes = {}; + if (dirty & /*metadata*/ 64) metadataresolver_changes.metadata = /*metadata*/ ctx[6]; + + if (dirty & /*$$scope, metadata, selectedId, days, onClick, startOfWeek, onContextMenu, onHover, weekNum*/ 16639) { + metadataresolver_changes.$$scope = { dirty, ctx }; + } + + metadataresolver.$set(metadataresolver_changes); + }, + i(local) { + if (current) return; + transition_in(metadataresolver.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(metadataresolver.$$.fragment, local); + current = false; + }, + d(detaching) { + if (detaching) detach(td); + destroy_component(metadataresolver); + } + }; +} + +function instance$1($$self, $$props, $$invalidate) { + + + let { weekNum } = $$props; + let { days } = $$props; + let { metadata } = $$props; + let { onHover } = $$props; + let { onClick } = $$props; + let { onContextMenu } = $$props; + let { selectedId = null } = $$props; + let startOfWeek; + const click_handler = e => onClick(startOfWeek, isMetaPressed(e)); + const contextmenu_handler = e => onContextMenu(days[0], e); + const pointerover_handler = e => onHover(startOfWeek, e.target, isMetaPressed(e)); + + $$self.$$set = $$props => { + if ("weekNum" in $$props) $$invalidate(0, weekNum = $$props.weekNum); + if ("days" in $$props) $$invalidate(1, days = $$props.days); + if ("metadata" in $$props) $$invalidate(6, metadata = $$props.metadata); + if ("onHover" in $$props) $$invalidate(2, onHover = $$props.onHover); + if ("onClick" in $$props) $$invalidate(3, onClick = $$props.onClick); + if ("onContextMenu" in $$props) $$invalidate(4, onContextMenu = $$props.onContextMenu); + if ("selectedId" in $$props) $$invalidate(5, selectedId = $$props.selectedId); + }; + + $$self.$$.update = () => { + if ($$self.$$.dirty & /*days*/ 2) { + $$invalidate(7, startOfWeek = getStartOfWeek(days)); + } + }; + + return [ + weekNum, + days, + onHover, + onClick, + onContextMenu, + selectedId, + metadata, + startOfWeek, + click_handler, + contextmenu_handler, + pointerover_handler + ]; +} + +class WeekNum extends SvelteComponent { + constructor(options) { + super(); + if (!document.getElementById("svelte-egt0yd-style")) add_css$1(); + + init(this, options, instance$1, create_fragment$1, not_equal, { + weekNum: 0, + days: 1, + metadata: 6, + onHover: 2, + onClick: 3, + onContextMenu: 4, + selectedId: 5 + }); + } +} + +async function metadataReducer(promisedMetadata) { + const meta = { + dots: [], + classes: [], + dataAttributes: {}, + }; + const metas = await Promise.all(promisedMetadata); + return metas.reduce((acc, meta) => ({ + classes: [...acc.classes, ...(meta.classes || [])], + dataAttributes: Object.assign(acc.dataAttributes, meta.dataAttributes), + dots: [...acc.dots, ...(meta.dots || [])], + }), meta); +} +function getDailyMetadata(sources, date, ..._args) { + return metadataReducer(sources.map((source) => source.getDailyMetadata(date))); +} +function getWeeklyMetadata(sources, date, ..._args) { + return metadataReducer(sources.map((source) => source.getWeeklyMetadata(date))); +} + +/* src/components/Calendar.svelte generated by Svelte v3.35.0 */ + +function add_css() { + var style = element("style"); + style.id = "svelte-pcimu8-style"; + style.textContent = ".container.svelte-pcimu8{--color-background-heading:transparent;--color-background-day:transparent;--color-background-weeknum:transparent;--color-background-weekend:transparent;--color-dot:var(--text-muted);--color-arrow:var(--text-muted);--color-button:var(--text-muted);--color-text-title:var(--text-normal);--color-text-heading:var(--text-muted);--color-text-day:var(--text-normal);--color-text-today:var(--interactive-accent);--color-text-weeknum:var(--text-muted)}.container.svelte-pcimu8{padding:0 8px}.container.is-mobile.svelte-pcimu8{padding:0}th.svelte-pcimu8{text-align:center}.weekend.svelte-pcimu8{background-color:var(--color-background-weekend)}.calendar.svelte-pcimu8{border-collapse:collapse;width:100%}th.svelte-pcimu8{background-color:var(--color-background-heading);color:var(--color-text-heading);font-size:0.6em;letter-spacing:1px;padding:4px;text-transform:uppercase}"; + append(document.head, style); +} + +function get_each_context(ctx, list, i) { + const child_ctx = ctx.slice(); + child_ctx[18] = list[i]; + return child_ctx; +} + +function get_each_context_1(ctx, list, i) { + const child_ctx = ctx.slice(); + child_ctx[21] = list[i]; + return child_ctx; +} + +function get_each_context_2(ctx, list, i) { + const child_ctx = ctx.slice(); + child_ctx[24] = list[i]; + return child_ctx; +} + +function get_each_context_3(ctx, list, i) { + const child_ctx = ctx.slice(); + child_ctx[27] = list[i]; + return child_ctx; +} + +// (55:6) {#if showWeekNums} +function create_if_block_2(ctx) { + let col; + + return { + c() { + col = element("col"); + }, + m(target, anchor) { + insert(target, col, anchor); + }, + d(detaching) { + if (detaching) detach(col); + } + }; +} + +// (58:6) {#each month[1].days as date} +function create_each_block_3(ctx) { + let col; + + return { + c() { + col = element("col"); + attr(col, "class", "svelte-pcimu8"); + toggle_class(col, "weekend", isWeekend(/*date*/ ctx[27])); + }, + m(target, anchor) { + insert(target, col, anchor); + }, + p(ctx, dirty) { + if (dirty & /*isWeekend, month*/ 16384) { + toggle_class(col, "weekend", isWeekend(/*date*/ ctx[27])); + } + }, + d(detaching) { + if (detaching) detach(col); + } + }; +} + +// (64:8) {#if showWeekNums} +function create_if_block_1(ctx) { + let th; + + return { + c() { + th = element("th"); + th.textContent = "W"; + attr(th, "class", "svelte-pcimu8"); + }, + m(target, anchor) { + insert(target, th, anchor); + }, + d(detaching) { + if (detaching) detach(th); + } + }; +} + +// (67:8) {#each daysOfWeek as dayOfWeek} +function create_each_block_2(ctx) { + let th; + let t_value = /*dayOfWeek*/ ctx[24] + ""; + let t; + + return { + c() { + th = element("th"); + t = text(t_value); + attr(th, "class", "svelte-pcimu8"); + }, + m(target, anchor) { + insert(target, th, anchor); + append(th, t); + }, + p(ctx, dirty) { + if (dirty & /*daysOfWeek*/ 32768 && t_value !== (t_value = /*dayOfWeek*/ ctx[24] + "")) set_data(t, t_value); + }, + d(detaching) { + if (detaching) detach(th); + } + }; +} + +// (75:10) {#if showWeekNums} +function create_if_block(ctx) { + let weeknum; + let current; + + const weeknum_spread_levels = [ + /*week*/ ctx[18], + { + metadata: getWeeklyMetadata(/*sources*/ ctx[8], /*week*/ ctx[18].days[0], /*today*/ ctx[10]) + }, + { onClick: /*onClickWeek*/ ctx[7] }, + { + onContextMenu: /*onContextMenuWeek*/ ctx[5] + }, + { onHover: /*onHoverWeek*/ ctx[3] }, + { selectedId: /*selectedId*/ ctx[9] } + ]; + + let weeknum_props = {}; + + for (let i = 0; i < weeknum_spread_levels.length; i += 1) { + weeknum_props = assign(weeknum_props, weeknum_spread_levels[i]); + } + + weeknum = new WeekNum({ props: weeknum_props }); + + return { + c() { + create_component(weeknum.$$.fragment); + }, + m(target, anchor) { + mount_component(weeknum, target, anchor); + current = true; + }, + p(ctx, dirty) { + const weeknum_changes = (dirty & /*month, getWeeklyMetadata, sources, today, onClickWeek, onContextMenuWeek, onHoverWeek, selectedId*/ 18344) + ? get_spread_update(weeknum_spread_levels, [ + dirty & /*month*/ 16384 && get_spread_object(/*week*/ ctx[18]), + dirty & /*getWeeklyMetadata, sources, month, today*/ 17664 && { + metadata: getWeeklyMetadata(/*sources*/ ctx[8], /*week*/ ctx[18].days[0], /*today*/ ctx[10]) + }, + dirty & /*onClickWeek*/ 128 && { onClick: /*onClickWeek*/ ctx[7] }, + dirty & /*onContextMenuWeek*/ 32 && { + onContextMenu: /*onContextMenuWeek*/ ctx[5] + }, + dirty & /*onHoverWeek*/ 8 && { onHover: /*onHoverWeek*/ ctx[3] }, + dirty & /*selectedId*/ 512 && { selectedId: /*selectedId*/ ctx[9] } + ]) + : {}; + + weeknum.$set(weeknum_changes); + }, + i(local) { + if (current) return; + transition_in(weeknum.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(weeknum.$$.fragment, local); + current = false; + }, + d(detaching) { + destroy_component(weeknum, detaching); + } + }; +} + +// (85:10) {#each week.days as day (day.format())} +function create_each_block_1(key_1, ctx) { + let first; + let day; + let current; + + day = new Day({ + props: { + date: /*day*/ ctx[21], + today: /*today*/ ctx[10], + displayedMonth: /*displayedMonth*/ ctx[0], + onClick: /*onClickDay*/ ctx[6], + onContextMenu: /*onContextMenuDay*/ ctx[4], + onHover: /*onHoverDay*/ ctx[2], + metadata: getDailyMetadata(/*sources*/ ctx[8], /*day*/ ctx[21], /*today*/ ctx[10]), + selectedId: /*selectedId*/ ctx[9] + } + }); + + return { + key: key_1, + first: null, + c() { + first = empty(); + create_component(day.$$.fragment); + this.first = first; + }, + m(target, anchor) { + insert(target, first, anchor); + mount_component(day, target, anchor); + current = true; + }, + p(new_ctx, dirty) { + ctx = new_ctx; + const day_changes = {}; + if (dirty & /*month*/ 16384) day_changes.date = /*day*/ ctx[21]; + if (dirty & /*today*/ 1024) day_changes.today = /*today*/ ctx[10]; + if (dirty & /*displayedMonth*/ 1) day_changes.displayedMonth = /*displayedMonth*/ ctx[0]; + if (dirty & /*onClickDay*/ 64) day_changes.onClick = /*onClickDay*/ ctx[6]; + if (dirty & /*onContextMenuDay*/ 16) day_changes.onContextMenu = /*onContextMenuDay*/ ctx[4]; + if (dirty & /*onHoverDay*/ 4) day_changes.onHover = /*onHoverDay*/ ctx[2]; + if (dirty & /*sources, month, today*/ 17664) day_changes.metadata = getDailyMetadata(/*sources*/ ctx[8], /*day*/ ctx[21], /*today*/ ctx[10]); + if (dirty & /*selectedId*/ 512) day_changes.selectedId = /*selectedId*/ ctx[9]; + day.$set(day_changes); + }, + i(local) { + if (current) return; + transition_in(day.$$.fragment, local); + current = true; + }, + o(local) { + transition_out(day.$$.fragment, local); + current = false; + }, + d(detaching) { + if (detaching) detach(first); + destroy_component(day, detaching); + } + }; +} + +// (73:6) {#each month as week (week.weekNum)} +function create_each_block(key_1, ctx) { + let tr; + let t0; + let each_blocks = []; + let each_1_lookup = new Map(); + let t1; + let current; + let if_block = /*showWeekNums*/ ctx[1] && create_if_block(ctx); + let each_value_1 = /*week*/ ctx[18].days; + const get_key = ctx => /*day*/ ctx[21].format(); + + for (let i = 0; i < each_value_1.length; i += 1) { + let child_ctx = get_each_context_1(ctx, each_value_1, i); + let key = get_key(child_ctx); + each_1_lookup.set(key, each_blocks[i] = create_each_block_1(key, child_ctx)); + } + + return { + key: key_1, + first: null, + c() { + tr = element("tr"); + if (if_block) if_block.c(); + t0 = space(); + + for (let i = 0; i < each_blocks.length; i += 1) { + each_blocks[i].c(); + } + + t1 = space(); + this.first = tr; + }, + m(target, anchor) { + insert(target, tr, anchor); + if (if_block) if_block.m(tr, null); + append(tr, t0); + + for (let i = 0; i < each_blocks.length; i += 1) { + each_blocks[i].m(tr, null); + } + + append(tr, t1); + current = true; + }, + p(new_ctx, dirty) { + ctx = new_ctx; + + if (/*showWeekNums*/ ctx[1]) { + if (if_block) { + if_block.p(ctx, dirty); + + if (dirty & /*showWeekNums*/ 2) { + transition_in(if_block, 1); + } + } else { + if_block = create_if_block(ctx); + if_block.c(); + transition_in(if_block, 1); + if_block.m(tr, t0); + } + } else if (if_block) { + group_outros(); + + transition_out(if_block, 1, 1, () => { + if_block = null; + }); + + check_outros(); + } + + if (dirty & /*month, today, displayedMonth, onClickDay, onContextMenuDay, onHoverDay, getDailyMetadata, sources, selectedId*/ 18261) { + each_value_1 = /*week*/ ctx[18].days; + group_outros(); + each_blocks = update_keyed_each(each_blocks, dirty, get_key, 1, ctx, each_value_1, each_1_lookup, tr, outro_and_destroy_block, create_each_block_1, t1, get_each_context_1); + check_outros(); + } + }, + i(local) { + if (current) return; + transition_in(if_block); + + for (let i = 0; i < each_value_1.length; i += 1) { + transition_in(each_blocks[i]); + } + + current = true; + }, + o(local) { + transition_out(if_block); + + for (let i = 0; i < each_blocks.length; i += 1) { + transition_out(each_blocks[i]); + } + + current = false; + }, + d(detaching) { + if (detaching) detach(tr); + if (if_block) if_block.d(); + + for (let i = 0; i < each_blocks.length; i += 1) { + each_blocks[i].d(); + } + } + }; +} + +function create_fragment$7(ctx) { + let div; + let nav; + let t0; + let table; + let colgroup; + let t1; + let t2; + let thead; + let tr; + let t3; + let t4; + let tbody; + let each_blocks = []; + let each2_lookup = new Map(); + let current; + + nav = new Nav({ + props: { + today: /*today*/ ctx[10], + displayedMonth: /*displayedMonth*/ ctx[0], + incrementDisplayedMonth: /*incrementDisplayedMonth*/ ctx[11], + decrementDisplayedMonth: /*decrementDisplayedMonth*/ ctx[12], + resetDisplayedMonth: /*resetDisplayedMonth*/ ctx[13] + } + }); + + let if_block0 = /*showWeekNums*/ ctx[1] && create_if_block_2(); + let each_value_3 = /*month*/ ctx[14][1].days; + let each_blocks_2 = []; + + for (let i = 0; i < each_value_3.length; i += 1) { + each_blocks_2[i] = create_each_block_3(get_each_context_3(ctx, each_value_3, i)); + } + + let if_block1 = /*showWeekNums*/ ctx[1] && create_if_block_1(); + let each_value_2 = /*daysOfWeek*/ ctx[15]; + let each_blocks_1 = []; + + for (let i = 0; i < each_value_2.length; i += 1) { + each_blocks_1[i] = create_each_block_2(get_each_context_2(ctx, each_value_2, i)); + } + + let each_value = /*month*/ ctx[14]; + const get_key = ctx => /*week*/ ctx[18].weekNum; + + for (let i = 0; i < each_value.length; i += 1) { + let child_ctx = get_each_context(ctx, each_value, i); + let key = get_key(child_ctx); + each2_lookup.set(key, each_blocks[i] = create_each_block(key, child_ctx)); + } + + return { + c() { + div = element("div"); + create_component(nav.$$.fragment); + t0 = space(); + table = element("table"); + colgroup = element("colgroup"); + if (if_block0) if_block0.c(); + t1 = space(); + + for (let i = 0; i < each_blocks_2.length; i += 1) { + each_blocks_2[i].c(); + } + + t2 = space(); + thead = element("thead"); + tr = element("tr"); + if (if_block1) if_block1.c(); + t3 = space(); + + for (let i = 0; i < each_blocks_1.length; i += 1) { + each_blocks_1[i].c(); + } + + t4 = space(); + tbody = element("tbody"); + + for (let i = 0; i < each_blocks.length; i += 1) { + each_blocks[i].c(); + } + + attr(table, "class", "calendar svelte-pcimu8"); + attr(div, "id", "calendar-container"); + attr(div, "class", "container svelte-pcimu8"); + toggle_class(div, "is-mobile", /*isMobile*/ ctx[16]); + }, + m(target, anchor) { + insert(target, div, anchor); + mount_component(nav, div, null); + append(div, t0); + append(div, table); + append(table, colgroup); + if (if_block0) if_block0.m(colgroup, null); + append(colgroup, t1); + + for (let i = 0; i < each_blocks_2.length; i += 1) { + each_blocks_2[i].m(colgroup, null); + } + + append(table, t2); + append(table, thead); + append(thead, tr); + if (if_block1) if_block1.m(tr, null); + append(tr, t3); + + for (let i = 0; i < each_blocks_1.length; i += 1) { + each_blocks_1[i].m(tr, null); + } + + append(table, t4); + append(table, tbody); + + for (let i = 0; i < each_blocks.length; i += 1) { + each_blocks[i].m(tbody, null); + } + + current = true; + }, + p(ctx, [dirty]) { + const nav_changes = {}; + if (dirty & /*today*/ 1024) nav_changes.today = /*today*/ ctx[10]; + if (dirty & /*displayedMonth*/ 1) nav_changes.displayedMonth = /*displayedMonth*/ ctx[0]; + nav.$set(nav_changes); + + if (/*showWeekNums*/ ctx[1]) { + if (if_block0) ; else { + if_block0 = create_if_block_2(); + if_block0.c(); + if_block0.m(colgroup, t1); + } + } else if (if_block0) { + if_block0.d(1); + if_block0 = null; + } + + if (dirty & /*isWeekend, month*/ 16384) { + each_value_3 = /*month*/ ctx[14][1].days; + let i; + + for (i = 0; i < each_value_3.length; i += 1) { + const child_ctx = get_each_context_3(ctx, each_value_3, i); + + if (each_blocks_2[i]) { + each_blocks_2[i].p(child_ctx, dirty); + } else { + each_blocks_2[i] = create_each_block_3(child_ctx); + each_blocks_2[i].c(); + each_blocks_2[i].m(colgroup, null); + } + } + + for (; i < each_blocks_2.length; i += 1) { + each_blocks_2[i].d(1); + } + + each_blocks_2.length = each_value_3.length; + } + + if (/*showWeekNums*/ ctx[1]) { + if (if_block1) ; else { + if_block1 = create_if_block_1(); + if_block1.c(); + if_block1.m(tr, t3); + } + } else if (if_block1) { + if_block1.d(1); + if_block1 = null; + } + + if (dirty & /*daysOfWeek*/ 32768) { + each_value_2 = /*daysOfWeek*/ ctx[15]; + let i; + + for (i = 0; i < each_value_2.length; i += 1) { + const child_ctx = get_each_context_2(ctx, each_value_2, i); + + if (each_blocks_1[i]) { + each_blocks_1[i].p(child_ctx, dirty); + } else { + each_blocks_1[i] = create_each_block_2(child_ctx); + each_blocks_1[i].c(); + each_blocks_1[i].m(tr, null); + } + } + + for (; i < each_blocks_1.length; i += 1) { + each_blocks_1[i].d(1); + } + + each_blocks_1.length = each_value_2.length; + } + + if (dirty & /*month, today, displayedMonth, onClickDay, onContextMenuDay, onHoverDay, getDailyMetadata, sources, selectedId, getWeeklyMetadata, onClickWeek, onContextMenuWeek, onHoverWeek, showWeekNums*/ 18431) { + each_value = /*month*/ ctx[14]; + group_outros(); + each_blocks = update_keyed_each(each_blocks, dirty, get_key, 1, ctx, each_value, each2_lookup, tbody, outro_and_destroy_block, create_each_block, null, get_each_context); + check_outros(); + } + }, + i(local) { + if (current) return; + transition_in(nav.$$.fragment, local); + + for (let i = 0; i < each_value.length; i += 1) { + transition_in(each_blocks[i]); + } + + current = true; + }, + o(local) { + transition_out(nav.$$.fragment, local); + + for (let i = 0; i < each_blocks.length; i += 1) { + transition_out(each_blocks[i]); + } + + current = false; + }, + d(detaching) { + if (detaching) detach(div); + destroy_component(nav); + if (if_block0) if_block0.d(); + destroy_each(each_blocks_2, detaching); + if (if_block1) if_block1.d(); + destroy_each(each_blocks_1, detaching); + + for (let i = 0; i < each_blocks.length; i += 1) { + each_blocks[i].d(); + } + } + }; +} + +function instance$7($$self, $$props, $$invalidate) { + + + let { localeData } = $$props; + let { showWeekNums = false } = $$props; + let { onHoverDay } = $$props; + let { onHoverWeek } = $$props; + let { onContextMenuDay } = $$props; + let { onContextMenuWeek } = $$props; + let { onClickDay } = $$props; + let { onClickWeek } = $$props; + let { sources = [] } = $$props; + let { selectedId } = $$props; + let { today = window.moment() } = $$props; + let { displayedMonth = today } = $$props; + let month; + let daysOfWeek; + + // eslint-disable-next-line @typescript-eslint/no-explicit-any + let isMobile = window.app.isMobile; + + function incrementDisplayedMonth() { + $$invalidate(0, displayedMonth = displayedMonth.clone().add(1, "month")); + } + + function decrementDisplayedMonth() { + $$invalidate(0, displayedMonth = displayedMonth.clone().subtract(1, "month")); + } + + function resetDisplayedMonth() { + $$invalidate(0, displayedMonth = today.clone()); + } + + $$self.$$set = $$props => { + if ("localeData" in $$props) $$invalidate(17, localeData = $$props.localeData); + if ("showWeekNums" in $$props) $$invalidate(1, showWeekNums = $$props.showWeekNums); + if ("onHoverDay" in $$props) $$invalidate(2, onHoverDay = $$props.onHoverDay); + if ("onHoverWeek" in $$props) $$invalidate(3, onHoverWeek = $$props.onHoverWeek); + if ("onContextMenuDay" in $$props) $$invalidate(4, onContextMenuDay = $$props.onContextMenuDay); + if ("onContextMenuWeek" in $$props) $$invalidate(5, onContextMenuWeek = $$props.onContextMenuWeek); + if ("onClickDay" in $$props) $$invalidate(6, onClickDay = $$props.onClickDay); + if ("onClickWeek" in $$props) $$invalidate(7, onClickWeek = $$props.onClickWeek); + if ("sources" in $$props) $$invalidate(8, sources = $$props.sources); + if ("selectedId" in $$props) $$invalidate(9, selectedId = $$props.selectedId); + if ("today" in $$props) $$invalidate(10, today = $$props.today); + if ("displayedMonth" in $$props) $$invalidate(0, displayedMonth = $$props.displayedMonth); + }; + + $$self.$$.update = () => { + if ($$self.$$.dirty & /*displayedMonth, localeData*/ 131073) { + $$invalidate(14, month = getMonth(displayedMonth, localeData)); + } + + if ($$self.$$.dirty & /*today, localeData*/ 132096) { + $$invalidate(15, daysOfWeek = getDaysOfWeek(today, localeData)); + } + }; + + return [ + displayedMonth, + showWeekNums, + onHoverDay, + onHoverWeek, + onContextMenuDay, + onContextMenuWeek, + onClickDay, + onClickWeek, + sources, + selectedId, + today, + incrementDisplayedMonth, + decrementDisplayedMonth, + resetDisplayedMonth, + month, + daysOfWeek, + isMobile, + localeData + ]; +} + +class Calendar$1 extends SvelteComponent { + constructor(options) { + super(); + if (!document.getElementById("svelte-pcimu8-style")) add_css(); + + init(this, options, instance$7, create_fragment$7, not_equal, { + localeData: 17, + showWeekNums: 1, + onHoverDay: 2, + onHoverWeek: 3, + onContextMenuDay: 4, + onContextMenuWeek: 5, + onClickDay: 6, + onClickWeek: 7, + sources: 8, + selectedId: 9, + today: 10, + displayedMonth: 0, + incrementDisplayedMonth: 11, + decrementDisplayedMonth: 12, + resetDisplayedMonth: 13 + }); + } + + get incrementDisplayedMonth() { + return this.$$.ctx[11]; + } + + get decrementDisplayedMonth() { + return this.$$.ctx[12]; + } + + get resetDisplayedMonth() { + return this.$$.ctx[13]; + } +} + +const langToMomentLocale = { + en: "en-gb", + zh: "zh-cn", + "zh-TW": "zh-tw", + ru: "ru", + ko: "ko", + it: "it", + id: "id", + ro: "ro", + "pt-BR": "pt-br", + cz: "cs", + da: "da", + de: "de", + es: "es", + fr: "fr", + no: "nn", + pl: "pl", + pt: "pt", + tr: "tr", + hi: "hi", + nl: "nl", + ar: "ar", + ja: "ja", +}; +const weekdays = [ + "sunday", + "monday", + "tuesday", + "wednesday", + "thursday", + "friday", + "saturday", +]; +function overrideGlobalMomentWeekStart(weekStart) { + const { moment } = window; + const currentLocale = moment.locale(); + // Save the initial locale weekspec so that we can restore + // it when toggling between the different options in settings. + if (!window._bundledLocaleWeekSpec) { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + window._bundledLocaleWeekSpec = moment.localeData()._week; + } + if (weekStart === "locale") { + moment.updateLocale(currentLocale, { + week: window._bundledLocaleWeekSpec, + }); + } + else { + moment.updateLocale(currentLocale, { + week: { + dow: weekdays.indexOf(weekStart) || 0, + }, + }); + } +} +/** + * Sets the locale used by the calendar. This allows the calendar to + * default to the user's locale (e.g. Start Week on Sunday/Monday/Friday) + * + * @param localeOverride locale string (e.g. "en-US") + */ +function configureGlobalMomentLocale(localeOverride = "system-default", weekStart = "locale") { + var _a; + const obsidianLang = localStorage.getItem("language") || "en"; + const systemLang = (_a = navigator.language) === null || _a === void 0 ? void 0 : _a.toLowerCase(); + let momentLocale = langToMomentLocale[obsidianLang]; + if (localeOverride !== "system-default") { + momentLocale = localeOverride; + } + else if (systemLang.startsWith(obsidianLang)) { + // If the system locale is more specific (en-gb vs en), use the system locale. + momentLocale = systemLang; + } + const currentLocale = window.moment.locale(momentLocale); + console.debug(`[Calendar] Trying to switch Moment.js global locale to ${momentLocale}, got ${currentLocale}`); + overrideGlobalMomentWeekStart(weekStart); + return currentLocale; +} + +/* src/ui/Calendar.svelte generated by Svelte v3.35.0 */ + +function create_fragment(ctx) { + let calendarbase; + let updating_displayedMonth; + let current; + + function calendarbase_displayedMonth_binding(value) { + /*calendarbase_displayedMonth_binding*/ ctx[12](value); + } + + let calendarbase_props = { + sources: /*sources*/ ctx[1], + today: /*today*/ ctx[9], + onHoverDay: /*onHoverDay*/ ctx[2], + onHoverWeek: /*onHoverWeek*/ ctx[3], + onContextMenuDay: /*onContextMenuDay*/ ctx[6], + onContextMenuWeek: /*onContextMenuWeek*/ ctx[7], + onClickDay: /*onClickDay*/ ctx[4], + onClickWeek: /*onClickWeek*/ ctx[5], + localeData: /*today*/ ctx[9].localeData(), + selectedId: /*$activeFile*/ ctx[10], + showWeekNums: /*$settings*/ ctx[8].showWeeklyNote + }; + + if (/*displayedMonth*/ ctx[0] !== void 0) { + calendarbase_props.displayedMonth = /*displayedMonth*/ ctx[0]; + } + + calendarbase = new Calendar$1({ props: calendarbase_props }); + binding_callbacks$1.push(() => bind(calendarbase, "displayedMonth", calendarbase_displayedMonth_binding)); + + return { + c() { + create_component$1(calendarbase.$$.fragment); + }, + m(target, anchor) { + mount_component$1(calendarbase, target, anchor); + current = true; + }, + p(ctx, [dirty]) { + const calendarbase_changes = {}; + if (dirty & /*sources*/ 2) calendarbase_changes.sources = /*sources*/ ctx[1]; + if (dirty & /*today*/ 512) calendarbase_changes.today = /*today*/ ctx[9]; + if (dirty & /*onHoverDay*/ 4) calendarbase_changes.onHoverDay = /*onHoverDay*/ ctx[2]; + if (dirty & /*onHoverWeek*/ 8) calendarbase_changes.onHoverWeek = /*onHoverWeek*/ ctx[3]; + if (dirty & /*onContextMenuDay*/ 64) calendarbase_changes.onContextMenuDay = /*onContextMenuDay*/ ctx[6]; + if (dirty & /*onContextMenuWeek*/ 128) calendarbase_changes.onContextMenuWeek = /*onContextMenuWeek*/ ctx[7]; + if (dirty & /*onClickDay*/ 16) calendarbase_changes.onClickDay = /*onClickDay*/ ctx[4]; + if (dirty & /*onClickWeek*/ 32) calendarbase_changes.onClickWeek = /*onClickWeek*/ ctx[5]; + if (dirty & /*today*/ 512) calendarbase_changes.localeData = /*today*/ ctx[9].localeData(); + if (dirty & /*$activeFile*/ 1024) calendarbase_changes.selectedId = /*$activeFile*/ ctx[10]; + if (dirty & /*$settings*/ 256) calendarbase_changes.showWeekNums = /*$settings*/ ctx[8].showWeeklyNote; + + if (!updating_displayedMonth && dirty & /*displayedMonth*/ 1) { + updating_displayedMonth = true; + calendarbase_changes.displayedMonth = /*displayedMonth*/ ctx[0]; + add_flush_callback(() => updating_displayedMonth = false); + } + + calendarbase.$set(calendarbase_changes); + }, + i(local) { + if (current) return; + transition_in$1(calendarbase.$$.fragment, local); + current = true; + }, + o(local) { + transition_out$1(calendarbase.$$.fragment, local); + current = false; + }, + d(detaching) { + destroy_component$1(calendarbase, detaching); + } + }; +} + +function instance($$self, $$props, $$invalidate) { + let $settings; + let $activeFile; + component_subscribe($$self, settings, $$value => $$invalidate(8, $settings = $$value)); + component_subscribe($$self, activeFile, $$value => $$invalidate(10, $activeFile = $$value)); + + + let today; + let { displayedMonth = today } = $$props; + let { sources } = $$props; + let { onHoverDay } = $$props; + let { onHoverWeek } = $$props; + let { onClickDay } = $$props; + let { onClickWeek } = $$props; + let { onContextMenuDay } = $$props; + let { onContextMenuWeek } = $$props; + + function tick() { + $$invalidate(9, today = window.moment()); + } + + function getToday(settings) { + configureGlobalMomentLocale(settings.localeOverride, settings.weekStart); + dailyNotes.reindex(); + weeklyNotes.reindex(); + return window.moment(); + } + + // 1 minute heartbeat to keep `today` reflecting the current day + let heartbeat = setInterval( + () => { + tick(); + const isViewingCurrentMonth = displayedMonth.isSame(today, "day"); + + if (isViewingCurrentMonth) { + // if it's midnight on the last day of the month, this will + // update the display to show the new month. + $$invalidate(0, displayedMonth = today); + } + }, + 1000 * 60 + ); + + onDestroy(() => { + clearInterval(heartbeat); + }); + + function calendarbase_displayedMonth_binding(value) { + displayedMonth = value; + $$invalidate(0, displayedMonth); + } + + $$self.$$set = $$props => { + if ("displayedMonth" in $$props) $$invalidate(0, displayedMonth = $$props.displayedMonth); + if ("sources" in $$props) $$invalidate(1, sources = $$props.sources); + if ("onHoverDay" in $$props) $$invalidate(2, onHoverDay = $$props.onHoverDay); + if ("onHoverWeek" in $$props) $$invalidate(3, onHoverWeek = $$props.onHoverWeek); + if ("onClickDay" in $$props) $$invalidate(4, onClickDay = $$props.onClickDay); + if ("onClickWeek" in $$props) $$invalidate(5, onClickWeek = $$props.onClickWeek); + if ("onContextMenuDay" in $$props) $$invalidate(6, onContextMenuDay = $$props.onContextMenuDay); + if ("onContextMenuWeek" in $$props) $$invalidate(7, onContextMenuWeek = $$props.onContextMenuWeek); + }; + + $$self.$$.update = () => { + if ($$self.$$.dirty & /*$settings*/ 256) { + $$invalidate(9, today = getToday($settings)); + } + }; + + return [ + displayedMonth, + sources, + onHoverDay, + onHoverWeek, + onClickDay, + onClickWeek, + onContextMenuDay, + onContextMenuWeek, + $settings, + today, + $activeFile, + tick, + calendarbase_displayedMonth_binding + ]; +} + +class Calendar extends SvelteComponent$1 { + constructor(options) { + super(); + + init$1(this, options, instance, create_fragment, not_equal$1, { + displayedMonth: 0, + sources: 1, + onHoverDay: 2, + onHoverWeek: 3, + onClickDay: 4, + onClickWeek: 5, + onContextMenuDay: 6, + onContextMenuWeek: 7, + tick: 11 + }); + } + + get tick() { + return this.$$.ctx[11]; + } +} + +function showFileMenu(app, file, position) { + const fileMenu = new obsidian.Menu(app); + fileMenu.addItem((item) => item + .setTitle("Delete") + .setIcon("trash") + .onClick(() => { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + app.fileManager.promptForFileDeletion(file); + })); + app.workspace.trigger("file-menu", fileMenu, file, "calendar-context-menu", null); + fileMenu.showAtPosition(position); +} + +const getStreakClasses = (file) => { + return classList({ + "has-note": !!file, + }); +}; +const streakSource = { + getDailyMetadata: async (date) => { + const file = getDailyNote_1(date, get_store_value(dailyNotes)); + return { + classes: getStreakClasses(file), + dots: [], + }; + }, + getWeeklyMetadata: async (date) => { + const file = getWeeklyNote_1(date, get_store_value(weeklyNotes)); + return { + classes: getStreakClasses(file), + dots: [], + }; + }, +}; + +function getNoteTags(note) { + var _a; + if (!note) { + return []; + } + const { metadataCache } = window.app; + const frontmatter = (_a = metadataCache.getFileCache(note)) === null || _a === void 0 ? void 0 : _a.frontmatter; + const tags = []; + if (frontmatter) { + const frontmatterTags = obsidian.parseFrontMatterTags(frontmatter) || []; + tags.push(...frontmatterTags); + } + // strip the '#' at the beginning + return tags.map((tag) => tag.substring(1)); +} +function getFormattedTagAttributes(note) { + const attrs = {}; + const tags = getNoteTags(note); + const [emojiTags, nonEmojiTags] = partition(tags, (tag) => /(?:[\u2700-\u27bf]|(?:\ud83c[\udde6-\uddff]){2}|[\ud800-\udbff][\udc00-\udfff]|[\u0023-\u0039]\ufe0f?\u20e3|\u3299|\u3297|\u303d|\u3030|\u24c2|\ud83c[\udd70-\udd71]|\ud83c[\udd7e-\udd7f]|\ud83c\udd8e|\ud83c[\udd91-\udd9a]|\ud83c[\udde6-\uddff]|\ud83c[\ude01-\ude02]|\ud83c\ude1a|\ud83c\ude2f|\ud83c[\ude32-\ude3a]|\ud83c[\ude50-\ude51]|\u203c|\u2049|[\u25aa-\u25ab]|\u25b6|\u25c0|[\u25fb-\u25fe]|\u00a9|\u00ae|\u2122|\u2139|\ud83c\udc04|[\u2600-\u26FF]|\u2b05|\u2b06|\u2b07|\u2b1b|\u2b1c|\u2b50|\u2b55|\u231a|\u231b|\u2328|\u23cf|[\u23e9-\u23f3]|[\u23f8-\u23fa]|\ud83c\udccf|\u2934|\u2935|[\u2190-\u21ff])/.test(tag)); + if (nonEmojiTags) { + attrs["data-tags"] = nonEmojiTags.join(" "); + } + if (emojiTags) { + attrs["data-emoji-tag"] = emojiTags[0]; + } + return attrs; +} +const customTagsSource = { + getDailyMetadata: async (date) => { + const file = getDailyNote_1(date, get_store_value(dailyNotes)); + return { + dataAttributes: getFormattedTagAttributes(file), + dots: [], + }; + }, + getWeeklyMetadata: async (date) => { + const file = getWeeklyNote_1(date, get_store_value(weeklyNotes)); + return { + dataAttributes: getFormattedTagAttributes(file), + dots: [], + }; + }, +}; + +async function getNumberOfRemainingTasks(note) { + if (!note) { + return 0; + } + const { vault } = window.app; + const fileContents = await vault.cachedRead(note); + return (fileContents.match(/(-|\*) \[ \]/g) || []).length; +} +async function getDotsForDailyNote$1(dailyNote) { + if (!dailyNote) { + return []; + } + const numTasks = await getNumberOfRemainingTasks(dailyNote); + const dots = []; + if (numTasks) { + dots.push({ + className: "task", + color: "default", + isFilled: false, + }); + } + return dots; +} +const tasksSource = { + getDailyMetadata: async (date) => { + const file = getDailyNote_1(date, get_store_value(dailyNotes)); + const dots = await getDotsForDailyNote$1(file); + return { + dots, + }; + }, + getWeeklyMetadata: async (date) => { + const file = getWeeklyNote_1(date, get_store_value(weeklyNotes)); + const dots = await getDotsForDailyNote$1(file); + return { + dots, + }; + }, +}; + +const NUM_MAX_DOTS = 5; +async function getWordLengthAsDots(note) { + const { wordsPerDot = DEFAULT_WORDS_PER_DOT } = get_store_value(settings); + if (!note || wordsPerDot <= 0) { + return 0; + } + const fileContents = await window.app.vault.cachedRead(note); + const wordCount = getWordCount(fileContents); + const numDots = wordCount / wordsPerDot; + return clamp(Math.floor(numDots), 1, NUM_MAX_DOTS); +} +async function getDotsForDailyNote(dailyNote) { + if (!dailyNote) { + return []; + } + const numSolidDots = await getWordLengthAsDots(dailyNote); + const dots = []; + for (let i = 0; i < numSolidDots; i++) { + dots.push({ + color: "default", + isFilled: true, + }); + } + return dots; +} +const wordCountSource = { + getDailyMetadata: async (date) => { + const file = getDailyNote_1(date, get_store_value(dailyNotes)); + const dots = await getDotsForDailyNote(file); + return { + dots, + }; + }, + getWeeklyMetadata: async (date) => { + const file = getWeeklyNote_1(date, get_store_value(weeklyNotes)); + const dots = await getDotsForDailyNote(file); + return { + dots, + }; + }, +}; + +class CalendarView extends obsidian.ItemView { + constructor(leaf) { + super(leaf); + this.openOrCreateDailyNote = this.openOrCreateDailyNote.bind(this); + this.openOrCreateWeeklyNote = this.openOrCreateWeeklyNote.bind(this); + this.onNoteSettingsUpdate = this.onNoteSettingsUpdate.bind(this); + this.onFileCreated = this.onFileCreated.bind(this); + this.onFileDeleted = this.onFileDeleted.bind(this); + this.onFileModified = this.onFileModified.bind(this); + this.onFileOpen = this.onFileOpen.bind(this); + this.onHoverDay = this.onHoverDay.bind(this); + this.onHoverWeek = this.onHoverWeek.bind(this); + this.onContextMenuDay = this.onContextMenuDay.bind(this); + this.onContextMenuWeek = this.onContextMenuWeek.bind(this); + this.registerEvent( + // eslint-disable-next-line @typescript-eslint/no-explicit-any + this.app.workspace.on("periodic-notes:settings-updated", this.onNoteSettingsUpdate)); + this.registerEvent(this.app.vault.on("create", this.onFileCreated)); + this.registerEvent(this.app.vault.on("delete", this.onFileDeleted)); + this.registerEvent(this.app.vault.on("modify", this.onFileModified)); + this.registerEvent(this.app.workspace.on("file-open", this.onFileOpen)); + this.settings = null; + settings.subscribe((val) => { + this.settings = val; + // Refresh the calendar if settings change + if (this.calendar) { + this.calendar.tick(); + } + }); + } + getViewType() { + return VIEW_TYPE_CALENDAR; + } + getDisplayText() { + return "Calendar"; + } + getIcon() { + return "calendar-with-checkmark"; + } + onClose() { + if (this.calendar) { + this.calendar.$destroy(); + } + return Promise.resolve(); + } + async onOpen() { + // Integration point: external plugins can listen for `calendar:open` + // to feed in additional sources. + const sources = [ + customTagsSource, + streakSource, + wordCountSource, + tasksSource, + ]; + this.app.workspace.trigger(TRIGGER_ON_OPEN, sources); + this.calendar = new Calendar({ + // eslint-disable-next-line @typescript-eslint/no-explicit-any + target: this.contentEl, + props: { + onClickDay: this.openOrCreateDailyNote, + onClickWeek: this.openOrCreateWeeklyNote, + onHoverDay: this.onHoverDay, + onHoverWeek: this.onHoverWeek, + onContextMenuDay: this.onContextMenuDay, + onContextMenuWeek: this.onContextMenuWeek, + sources, + }, + }); + } + onHoverDay(date, targetEl, isMetaPressed) { + if (!isMetaPressed) { + return; + } + const { format } = getDailyNoteSettings_1(); + const note = getDailyNote_1(date, get_store_value(dailyNotes)); + this.app.workspace.trigger("link-hover", this, targetEl, date.format(format), note === null || note === void 0 ? void 0 : note.path); + } + onHoverWeek(date, targetEl, isMetaPressed) { + if (!isMetaPressed) { + return; + } + const note = getWeeklyNote_1(date, get_store_value(weeklyNotes)); + const { format } = getWeeklyNoteSettings_1(); + this.app.workspace.trigger("link-hover", this, targetEl, date.format(format), note === null || note === void 0 ? void 0 : note.path); + } + onContextMenuDay(date, event) { + const note = getDailyNote_1(date, get_store_value(dailyNotes)); + if (!note) { + // If no file exists for a given day, show nothing. + return; + } + showFileMenu(this.app, note, { + x: event.pageX, + y: event.pageY, + }); + } + onContextMenuWeek(date, event) { + const note = getWeeklyNote_1(date, get_store_value(weeklyNotes)); + if (!note) { + // If no file exists for a given day, show nothing. + return; + } + showFileMenu(this.app, note, { + x: event.pageX, + y: event.pageY, + }); + } + onNoteSettingsUpdate() { + dailyNotes.reindex(); + weeklyNotes.reindex(); + this.updateActiveFile(); + } + async onFileDeleted(file) { + if (getDateFromFile_1(file, "day")) { + dailyNotes.reindex(); + this.updateActiveFile(); + } + if (getDateFromFile_1(file, "week")) { + weeklyNotes.reindex(); + this.updateActiveFile(); + } + } + async onFileModified(file) { + const date = getDateFromFile_1(file, "day") || getDateFromFile_1(file, "week"); + if (date && this.calendar) { + this.calendar.tick(); + } + } + onFileCreated(file) { + if (this.app.workspace.layoutReady && this.calendar) { + if (getDateFromFile_1(file, "day")) { + dailyNotes.reindex(); + this.calendar.tick(); + } + if (getDateFromFile_1(file, "week")) { + weeklyNotes.reindex(); + this.calendar.tick(); + } + } + } + onFileOpen(_file) { + if (this.app.workspace.layoutReady) { + this.updateActiveFile(); + } + } + updateActiveFile() { + const { view } = this.app.workspace.activeLeaf; + let file = null; + if (view instanceof obsidian.FileView) { + file = view.file; + } + activeFile.setFile(file); + if (this.calendar) { + this.calendar.tick(); + } + } + revealActiveNote() { + const { moment } = window; + const { activeLeaf } = this.app.workspace; + if (activeLeaf.view instanceof obsidian.FileView) { + // Check to see if the active note is a daily-note + let date = getDateFromFile_1(activeLeaf.view.file, "day"); + if (date) { + this.calendar.$set({ displayedMonth: date }); + return; + } + // Check to see if the active note is a weekly-note + const { format } = getWeeklyNoteSettings_1(); + date = moment(activeLeaf.view.file.basename, format, true); + if (date.isValid()) { + this.calendar.$set({ displayedMonth: date }); + return; + } + } + } + async openOrCreateWeeklyNote(date, inNewSplit) { + const { workspace } = this.app; + const startOfWeek = date.clone().startOf("week"); + const existingFile = getWeeklyNote_1(date, get_store_value(weeklyNotes)); + if (!existingFile) { + // File doesn't exist + tryToCreateWeeklyNote(startOfWeek, inNewSplit, this.settings, (file) => { + activeFile.setFile(file); + }); + return; + } + const leaf = inNewSplit + ? workspace.splitActiveLeaf() + : workspace.getUnpinnedLeaf(); + await leaf.openFile(existingFile); + activeFile.setFile(existingFile); + } + async openOrCreateDailyNote(date, inNewSplit) { + const { workspace } = this.app; + const existingFile = getDailyNote_1(date, get_store_value(dailyNotes)); + if (!existingFile) { + // File doesn't exist + tryToCreateDailyNote(date, inNewSplit, this.settings, (dailyNote) => { + activeFile.setFile(dailyNote); + }); + return; + } + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const mode = this.app.vault.getConfig("defaultViewMode"); + const leaf = inNewSplit + ? workspace.splitActiveLeaf() + : workspace.getUnpinnedLeaf(); + await leaf.openFile(existingFile, { mode }); + activeFile.setFile(existingFile); + } +} + +class CalendarPlugin extends obsidian.Plugin { + onunload() { + this.app.workspace + .getLeavesOfType(VIEW_TYPE_CALENDAR) + .forEach((leaf) => leaf.detach()); + } + async onload() { + this.register(settings.subscribe((value) => { + this.options = value; + })); + this.registerView(VIEW_TYPE_CALENDAR, (leaf) => (this.view = new CalendarView(leaf))); + this.addCommand({ + id: "show-calendar-view", + name: "Open view", + checkCallback: (checking) => { + if (checking) { + return (this.app.workspace.getLeavesOfType(VIEW_TYPE_CALENDAR).length === 0); + } + this.initLeaf(); + }, + }); + this.addCommand({ + id: "open-weekly-note", + name: "Open Weekly Note", + checkCallback: (checking) => { + if (checking) { + return !appHasPeriodicNotesPluginLoaded(); + } + this.view.openOrCreateWeeklyNote(window.moment(), false); + }, + }); + this.addCommand({ + id: "reveal-active-note", + name: "Reveal active note", + callback: () => this.view.revealActiveNote(), + }); + await this.loadOptions(); + this.addSettingTab(new CalendarSettingsTab(this.app, this)); + if (this.app.workspace.layoutReady) { + this.initLeaf(); + } + else { + this.registerEvent(this.app.workspace.on("layout-ready", this.initLeaf.bind(this))); + } + } + initLeaf() { + if (this.app.workspace.getLeavesOfType(VIEW_TYPE_CALENDAR).length) { + return; + } + this.app.workspace.getRightLeaf(false).setViewState({ + type: VIEW_TYPE_CALENDAR, + }); + } + async loadOptions() { + const options = await this.loadData(); + settings.update((old) => { + return Object.assign(Object.assign({}, old), (options || {})); + }); + await this.saveData(this.options); + } + async writeOptions(changeOpts) { + settings.update((old) => (Object.assign(Object.assign({}, old), changeOpts(old)))); + await this.saveData(this.options); + } +} + +module.exports = CalendarPlugin; + +/* nosourcemap */ \ No newline at end of file diff --git a/plugins/calendar/manifest.json b/plugins/calendar/manifest.json new file mode 100644 index 0000000..028bfa5 --- /dev/null +++ b/plugins/calendar/manifest.json @@ -0,0 +1,10 @@ +{ + "id": "calendar", + "name": "Calendar", + "description": "Calendar view of your daily notes", + "version": "1.5.10", + "author": "Liam Cain", + "authorUrl": "https://github.com/liamcain/", + "isDesktopOnly": false, + "minAppVersion": "0.9.11" +} diff --git a/plugins/multi-vault-links-0.1.4/main.js b/plugins/multi-vault-links-0.1.4/main.js new file mode 100644 index 0000000..51e2c79 --- /dev/null +++ b/plugins/multi-vault-links-0.1.4/main.js @@ -0,0 +1,253 @@ +"use strict"; +var __defProp = Object.defineProperty; +var __getOwnPropDesc = Object.getOwnPropertyDescriptor; +var __getOwnPropNames = Object.getOwnPropertyNames; +var __hasOwnProp = Object.prototype.hasOwnProperty; +var __export = (target, all) => { + for (var name in all) + __defProp(target, name, { get: all[name], enumerable: true }); +}; +var __copyProps = (to, from, except, desc) => { + if (from && typeof from === "object" || typeof from === "function") { + for (let key of __getOwnPropNames(from)) + if (!__hasOwnProp.call(to, key) && key !== except) + __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); + } + return to; +}; +var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); + +// src/main.ts +var main_exports = {}; +__export(main_exports, { + createLinkEl: () => createLinkEl, + default: () => MultiVaultLinksPlugin, + openVaultUri: () => openVaultUri +}); +module.exports = __toCommonJS(main_exports); +var import_obsidian2 = require("obsidian"); + +// src/parse.ts +var LINK_RE = /\[\[([^\]]+?)\]\]/g; +var VAULT_RE = /^\s*([^#/|:]+?)\s*:\s*([\s\S]+)$/; +function parseInner(inner) { + const m = VAULT_RE.exec(inner); + if (!m) + return null; + const vault = m[1].trim(); + let rest = m[2]; + let alias = null; + const pipe = rest.indexOf("|"); + if (pipe !== -1) { + alias = rest.slice(pipe + 1).trim(); + rest = rest.slice(0, pipe); + } + const hash = rest.indexOf("#"); + let file; + let subpath; + if (hash !== -1) { + file = rest.slice(0, hash).trim(); + subpath = rest.slice(hash).trim(); + } else { + file = rest.trim(); + subpath = ""; + } + if (!vault || !file) + return null; + const display = `${vault}: ${file}${subpath}`; + return { vault, file, subpath, alias, display }; +} +function findVaultLinks(text) { + const out = []; + LINK_RE.lastIndex = 0; + let m; + while ((m = LINK_RE.exec(text)) !== null) { + const parsed = parseInner(m[1]); + if (!parsed) + continue; + out.push({ + ...parsed, + raw: m[0], + start: m.index, + end: m.index + m[0].length + }); + } + return out; +} +function parseVaultTarget(target) { + return parseInner(target); +} +function buildObsidianUri(link) { + const vault = encodeURIComponent(link.vault); + const file = encodeURIComponent(`${link.file}${link.subpath}`); + return `obsidian://open?vault=${vault}&file=${file}`; +} + +// src/livePreview.ts +var import_view = require("@codemirror/view"); +var import_state = require("@codemirror/state"); +var import_obsidian = require("obsidian"); +var VaultLinkWidget = class extends import_view.WidgetType { + constructor(link) { + super(); + this.link = link; + } + eq(other) { + return other.link.raw === this.link.raw; + } + toDOM() { + const a = document.createElement("a"); + a.className = "multi-vault-link cm-multi-vault-link"; + const uri = buildObsidianUri(this.link); + a.href = uri; + a.setAttribute("aria-label", `${this.link.vault} \u2192 ${this.link.file}${this.link.subpath}`); + a.textContent = this.link.display; + a.addEventListener("click", (evt) => { + evt.preventDefault(); + evt.stopPropagation(); + window.open(uri); + }); + return a; + } + ignoreEvent() { + return true; + } +}; +function selectionTouches(view, from, to) { + return view.state.selection.ranges.some((r) => r.from <= to && r.to >= from); +} +function buildDecorations(view) { + const builder = new import_state.RangeSetBuilder(); + const livePreview = view.state.field(import_obsidian.editorLivePreviewField); + for (const { from, to } of view.visibleRanges) { + const text = view.state.doc.sliceString(from, to); + for (const link of findVaultLinks(text)) { + const start = from + link.start; + const end = from + link.end; + if (!livePreview || selectionTouches(view, start, end)) { + builder.add(start, end, import_view.Decoration.mark({ class: "cm-multi-vault-source" })); + continue; + } + builder.add( + start, + end, + import_view.Decoration.replace({ widget: new VaultLinkWidget(link) }) + ); + } + } + return builder.finish(); +} +var multiVaultLivePreview = import_view.ViewPlugin.fromClass( + class { + constructor(view) { + this.decorations = buildDecorations(view); + } + update(update) { + const modeChanged = update.startState.field(import_obsidian.editorLivePreviewField) !== update.state.field(import_obsidian.editorLivePreviewField); + if (update.docChanged || update.viewportChanged || update.selectionSet || modeChanged) { + this.decorations = buildDecorations(update.view); + } + } + }, + { decorations: (v) => v.decorations } +); + +// src/main.ts +var SKIP_TAGS = /* @__PURE__ */ new Set(["CODE", "PRE", "A"]); +function isInsideSkipped(node) { + let el = node.parentElement; + while (el) { + if (SKIP_TAGS.has(el.tagName)) + return true; + el = el.parentElement; + } + return false; +} +function openVaultUri(uri, win = window) { + win.open(uri); +} +function attachOpenHandler(a, uri) { + a.addEventListener("click", (evt) => { + evt.preventDefault(); + evt.stopPropagation(); + openVaultUri(uri, a.ownerDocument.defaultView ?? window); + }); +} +function buildAnchor(doc, link, display) { + const a = doc.createElement("a"); + a.addClass("multi-vault-link"); + const uri = buildObsidianUri(link); + a.setAttribute("href", uri); + a.setAttribute("aria-label", `${link.vault} \u2192 ${link.file}${link.subpath}`); + a.textContent = display; + attachOpenHandler(a, uri); + return a; +} +function createLinkEl(doc, link) { + return buildAnchor(doc, link, link.display); +} +function rewriteInternalLinks(el) { + el.querySelectorAll("a.internal-link").forEach((a) => { + const target = a.getAttribute("data-href") ?? a.getAttribute("href") ?? ""; + const link = parseVaultTarget(target); + if (!link) + return; + a.replaceWith(buildAnchor(a.ownerDocument, link, link.display)); + }); +} +function rewriteTextNode(node) { + const text = node.nodeValue ?? ""; + const links = findVaultLinks(text); + if (links.length === 0) + return; + const doc = node.ownerDocument; + const frag = doc.createDocumentFragment(); + let cursor = 0; + for (const link of links) { + if (link.start > cursor) { + frag.appendChild(doc.createTextNode(text.slice(cursor, link.start))); + } + frag.appendChild(createLinkEl(doc, link)); + cursor = link.end; + } + if (cursor < text.length) { + frag.appendChild(doc.createTextNode(text.slice(cursor))); + } + node.replaceWith(frag); +} +var MultiVaultLinksPlugin = class extends import_obsidian2.Plugin { + async onload() { + this.registerMarkdownPostProcessor((el) => { + rewriteInternalLinks(el); + const walker = el.ownerDocument.createTreeWalker(el, NodeFilter.SHOW_TEXT); + const targets = []; + let n; + while (n = walker.nextNode()) { + const t = n; + if (!t.nodeValue || !t.nodeValue.includes("[[")) + continue; + if (isInsideSkipped(t)) + continue; + targets.push(t); + } + targets.forEach(rewriteTextNode); + }); + this.registerEditorExtension(multiVaultLivePreview); + this.patchOpenLinkText(); + } + patchOpenLinkText() { + const ws = this.app.workspace; + const original = ws.openLinkText.bind(ws); + ws.openLinkText = (linktext, sourcePath, newLeaf, viewState) => { + const link = parseVaultTarget(linktext); + if (link) { + openVaultUri(buildObsidianUri(link)); + return Promise.resolve(); + } + return original(linktext, sourcePath, newLeaf, viewState); + }; + this.register(() => { + ws.openLinkText = original; + }); + } +}; diff --git a/plugins/multi-vault-links-0.1.4/manifest.json b/plugins/multi-vault-links-0.1.4/manifest.json new file mode 100644 index 0000000..17ff514 --- /dev/null +++ b/plugins/multi-vault-links-0.1.4/manifest.json @@ -0,0 +1,9 @@ +{ + "id": "multi-vault-links", + "name": "Multi-Vault Links", + "version": "0.1.4", + "minAppVersion": "1.5.0", + "description": "Turn [[Vault: file]] links into clickable obsidian:// URIs that open the file in another vault.", + "author": "exedev", + "isDesktopOnly": false +} diff --git a/plugins/multi-vault-links-0.1.4/styles.css b/plugins/multi-vault-links-0.1.4/styles.css new file mode 100644 index 0000000..fbf648a --- /dev/null +++ b/plugins/multi-vault-links-0.1.4/styles.css @@ -0,0 +1,20 @@ +.multi-vault-link { + color: var(--link-color, var(--text-accent)); + text-decoration: var(--link-decoration, underline); + cursor: pointer; +} + +.multi-vault-link:hover { + color: var(--link-color-hover, var(--text-accent-hover)); + text-decoration: var(--link-decoration-hover, underline); +} + +/* When the raw [[…]] is shown (source mode, or cursor in the link in live + preview) Obsidian marks the cross-vault target "unresolved" and fades it with + --link-unresolved-opacity (~0.7). Restore full opacity and the normal link + colour so a multi-vault link never looks grayed. */ +.cm-multi-vault-source .cm-hmd-internal-link, +.cm-multi-vault-source .is-unresolved { + color: var(--link-color, var(--text-accent)) !important; + opacity: 1 !important; +} diff --git a/plugins/obsidian-hider/data.json b/plugins/obsidian-hider/data.json new file mode 100644 index 0000000..45025cf --- /dev/null +++ b/plugins/obsidian-hider/data.json @@ -0,0 +1,13 @@ +{ + "hideStatus": true, + "hideTabs": false, + "hideScroll": false, + "hideSidebarButtons": false, + "hideTooltips": true, + "hideFileNavButtons": false, + "hideSearchSuggestions": false, + "hideSearchCounts": false, + "hideInstructions": false, + "hidePropertiesReading": false, + "hideVault": false +} \ No newline at end of file diff --git a/plugins/obsidian-hider/main.js b/plugins/obsidian-hider/main.js new file mode 100644 index 0000000..565bd95 --- /dev/null +++ b/plugins/obsidian-hider/main.js @@ -0,0 +1,8 @@ +/* +THIS IS A GENERATED/BUNDLED FILE BY ESBUILD +if you want to view the source, please visit the github repository of this plugin +*/ + +var d=Object.defineProperty;var o=Object.getOwnPropertyDescriptor;var l=Object.getOwnPropertyNames;var u=Object.prototype.hasOwnProperty;var r=(n,i)=>{for(var t in i)d(n,t,{get:i[t],enumerable:!0})},c=(n,i,t,s)=>{if(i&&typeof i=="object"||typeof i=="function")for(let e of l(i))!u.call(n,e)&&e!==t&&d(n,e,{get:()=>i[e],enumerable:!(s=o(i,e))||s.enumerable});return n};var p=n=>c(d({},"__esModule",{value:!0}),n);var b={};r(b,{default:()=>g});module.exports=p(b);var a=require("obsidian"),g=class extends a.Plugin{constructor(){super(...arguments);this.refresh=()=>{this.updateStyle()};this.updateStyle=()=>{document.body.classList.toggle("hider-status",this.settings.hideStatus),document.body.classList.toggle("hider-tabs",this.settings.hideTabs),document.body.classList.toggle("hider-scroll",this.settings.hideScroll),document.body.classList.toggle("hider-sidebar-buttons",this.settings.hideSidebarButtons),document.body.classList.toggle("hider-tooltips",this.settings.hideTooltips),document.body.classList.toggle("hider-search-suggestions",this.settings.hideSearchSuggestions),document.body.classList.toggle("hider-file-nav-header",this.settings.hideFileNavButtons),document.body.classList.toggle("hider-search-counts",this.settings.hideSearchCounts),document.body.classList.toggle("hider-instructions",this.settings.hideInstructions),document.body.classList.toggle("hider-meta",this.settings.hidePropertiesReading),document.body.classList.toggle("hider-vault",this.settings.hideVault)}}async onload(){await this.loadSettings(),this.addSettingTab(new h(this.app,this)),this.addCommand({id:"toggle-tab-containers",name:"Toggle tab bar",callback:()=>{this.settings.hideTabs=!this.settings.hideTabs,this.saveData(this.settings),this.refresh()}}),this.addCommand({id:"toggle-hider-status",name:"Toggle status bar",callback:()=>{this.settings.hideStatus=!this.settings.hideStatus,this.saveData(this.settings),this.refresh()}}),this.refresh()}onunload(){}async loadSettings(){this.settings=Object.assign({},S,await this.loadData())}async saveSettings(){await this.saveData(this.settings)}},S={hideStatus:!1,hideTabs:!1,hideScroll:!1,hideSidebarButtons:!1,hideTooltips:!1,hideFileNavButtons:!1,hideSearchSuggestions:!1,hideSearchCounts:!1,hideInstructions:!1,hidePropertiesReading:!1,hideVault:!1},h=class extends a.PluginSettingTab{constructor(i,t){super(i,t),this.plugin=t}display(){let{containerEl:i}=this;i.empty(),new a.SettingGroup(i).setHeading("Interface").addSetting(t=>{t.setName("Hide tab bar").setDesc("Hides the tab container at the top of the window.").addToggle(s=>s.setValue(this.plugin.settings.hideTabs).onChange(e=>{this.plugin.settings.hideTabs=e,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))}).addSetting(t=>{t.setName("Hide status bar").setDesc("Hides word count, character count and backlink count.").addToggle(s=>s.setValue(this.plugin.settings.hideStatus).onChange(e=>{this.plugin.settings.hideStatus=e,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))}).addSetting(t=>{t.setName("Hide vault name").setDesc("Hides your vault profile. Warning: this also hides access to the Settings and vault switcher icons. You can use hotkeys or the command palette to open them.").addToggle(s=>s.setValue(this.plugin.settings.hideVault).onChange(e=>{this.plugin.settings.hideVault=e,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))}).addSetting(t=>{t.setName("Hide scroll bars").setDesc("Hides all scroll bars.").addToggle(s=>s.setValue(this.plugin.settings.hideScroll).onChange(e=>{this.plugin.settings.hideScroll=e,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))}).addSetting(t=>{t.setName("Hide sidebar toggle buttons").setDesc("Hides both sidebar buttons.").addToggle(s=>s.setValue(this.plugin.settings.hideSidebarButtons).onChange(e=>{this.plugin.settings.hideSidebarButtons=e,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))}).addSetting(t=>{t.setName("Hide tooltips").setDesc("Hides all tooltips.").addToggle(s=>s.setValue(this.plugin.settings.hideTooltips).onChange(e=>{this.plugin.settings.hideTooltips=e,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))}),new a.SettingGroup(i).setHeading("File explorer").addSetting(t=>{t.setName("Hide file explorer buttons").setDesc("Hides buttons at the top of file explorer (new file, new folder, etc).").addToggle(s=>s.setValue(this.plugin.settings.hideFileNavButtons).onChange(e=>{this.plugin.settings.hideFileNavButtons=e,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))}),new a.SettingGroup(i).setHeading("Search").addSetting(t=>{t.setName("Hide search suggestions").setDesc("Hides suggestions in search pane.").addToggle(s=>s.setValue(this.plugin.settings.hideSearchSuggestions).onChange(e=>{this.plugin.settings.hideSearchSuggestions=e,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))}).addSetting(t=>{t.setName("Hide count of search term matches").setDesc("Hides the number of matches within each search result.").addToggle(s=>s.setValue(this.plugin.settings.hideSearchCounts).onChange(e=>{this.plugin.settings.hideSearchCounts=e,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))}),new a.SettingGroup(i).setHeading("Other").addSetting(t=>{t.setName("Hide instructions").setDesc("Hides instructional tips in quick switcher and command palette.").addToggle(s=>s.setValue(this.plugin.settings.hideInstructions).onChange(e=>{this.plugin.settings.hideInstructions=e,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))}).addSetting(t=>{t.setName("Hide properties in Reading view").setDesc("Hides the properties section in Reading view.").addToggle(s=>s.setValue(this.plugin.settings.hidePropertiesReading).onChange(e=>{this.plugin.settings.hidePropertiesReading=e,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))})}}; + +/* nosourcemap */ \ No newline at end of file diff --git a/plugins/obsidian-hider/manifest.json b/plugins/obsidian-hider/manifest.json new file mode 100644 index 0000000..3e0d6fa --- /dev/null +++ b/plugins/obsidian-hider/manifest.json @@ -0,0 +1,11 @@ +{ + "id": "obsidian-hider", + "name": "Hider", + "version": "1.6.2", + "minAppVersion": "1.11.1", + "description": "Hide UI elements such as tooltips, status, titlebar and more.", + "author": "@kepano", + "authorUrl": "https://www.twitter.com/kepano", + "fundingUrl": "https://www.buymeacoffee.com/kepano", + "isDesktopOnly": false +} diff --git a/plugins/obsidian-hider/styles.css b/plugins/obsidian-hider/styles.css new file mode 100644 index 0000000..2ae3f50 --- /dev/null +++ b/plugins/obsidian-hider/styles.css @@ -0,0 +1,66 @@ +/* Hides vault name */ +.hider-vault .workspace-sidedock-vault-profile, +body.hider-vault:not(.is-mobile) .workspace-split.mod-left-split .workspace-sidedock-vault-profile { + display:none; +} + +/* Hide tabs */ +.hider-tabs .mod-root .workspace-tabs .workspace-tab-header-container { + display: none; +} + +.hider-tabs .mod-top-left-space .view-header { + padding-left: var(--frame-left-space); +} + +/* Hide sidebar buttons */ +.hider-sidebar-buttons .sidebar-toggle-button.mod-right, +.hider-sidebar-buttons .sidebar-toggle-button.mod-left { + display: none; +} +.hider-sidebar-buttons.mod-macos.is-hidden-frameless:not(.is-popout-window) .workspace .workspace-tabs.mod-top-right-space .workspace-tab-header-container { + padding-right: 4px; +} +.hider-sidebar-buttons.mod-macos { + --frame-left-space: 60px; +} + +/* Hide meta */ +.hider-meta .markdown-reading-view .metadata-container { + display:none; +} + +/* Hide scrollbars */ +.hider-scroll ::-webkit-scrollbar { + display:none; +} + +/* Hide status */ +.hider-status .status-bar { + display:none; +} + +/* Hide tooltips */ +.hider-tooltips .tooltip { + display:none; +} + +/* Hide search suggestions */ +.hider-search-suggestions .suggestion-container.mod-search-suggestion { + display: none; +} + +/* Hide search count flair */ +.hider-search-counts .tree-item-flair:not(.tag-pane-tag-count) { + display:none; +} + +/* Hide instructions */ +.hider-instructions .prompt-instructions { + display:none; +} + +/* Hide file nav header */ +.hider-file-nav-header .workspace-leaf-content[data-type=file-explorer] .nav-header { + display: none; +} diff --git a/plugins/obsidian-minimal-settings/data.json b/plugins/obsidian-minimal-settings/data.json new file mode 100644 index 0000000..3b5d271 --- /dev/null +++ b/plugins/obsidian-minimal-settings/data.json @@ -0,0 +1,33 @@ +{ + "lightStyle": "minimal-light", + "darkStyle": "minimal-dark", + "lightScheme": "minimal-things-light", + "darkScheme": "minimal-things-dark", + "editorFont": "", + "lineHeight": 1.6, + "lineWidth": 40, + "lineWidthWide": 50, + "maxWidth": 88, + "textNormal": 18, + "textSmall": 13, + "imgGrid": false, + "imgWidth": "img-default-width", + "tableWidth": "table-default-width", + "iframeWidth": "iframe-default-width", + "mapWidth": "map-default-width", + "chartWidth": "chart-default-width", + "colorfulHeadings": false, + "colorfulFrame": false, + "colorfulActiveStates": false, + "trimNames": true, + "labeledNav": false, + "fullWidthMedia": true, + "bordersToggle": true, + "minimalStatus": true, + "focusMode": false, + "underlineInternal": true, + "underlineExternal": true, + "folding": true, + "lineNumbers": false, + "readableLineLength": true +} \ No newline at end of file diff --git a/plugins/obsidian-minimal-settings/main.js b/plugins/obsidian-minimal-settings/main.js new file mode 100644 index 0000000..913f5c5 --- /dev/null +++ b/plugins/obsidian-minimal-settings/main.js @@ -0,0 +1,8 @@ +/* +THIS IS A GENERATED/BUNDLED FILE BY ESBUILD +if you want to view the source, please visit the github repository of this plugin +*/ + +var C=Object.defineProperty;var q=Object.getOwnPropertyDescriptor;var J=Object.getOwnPropertyNames;var K=Object.prototype.hasOwnProperty;var Q=(e,s)=>{for(var d in s)C(e,d,{get:s[d],enumerable:!0})},X=(e,s,d,m)=>{if(s&&typeof s=="object"||typeof s=="function")for(let o of J(s))!K.call(e,o)&&o!==d&&C(e,o,{get:()=>s[o],enumerable:!(m=q(s,o))||m.enumerable});return e};var Y=e=>X(C({},"__esModule",{value:!0}),e);var g=(e,s,d)=>new Promise((m,o)=>{var n=t=>{try{r(d.next(t))}catch(a){o(a)}},l=t=>{try{r(d.throw(t))}catch(a){o(a)}},r=t=>t.done?m(t.value):Promise.resolve(t.value).then(n,l);r((d=d.apply(e,s)).next())});var ee={};Q(ee,{default:()=>w});module.exports=Y(ee);var j=require("obsidian");var h=require("obsidian"),W={lightStyle:"minimal-light",darkStyle:"minimal-dark",lightScheme:"minimal-default-light",darkScheme:"minimal-default-dark",editorFont:"",lineHeight:1.5,lineWidth:40,lineWidthWide:50,maxWidth:88,textNormal:16,textSmall:13,imgGrid:!1,imgWidth:"img-default-width",tableWidth:"table-default-width",iframeWidth:"iframe-default-width",mapWidth:"map-default-width",chartWidth:"chart-default-width",colorfulHeadings:!1,colorfulFrame:!1,colorfulActiveStates:!1,trimNames:!0,labeledNav:!1,fullWidthMedia:!0,bordersToggle:!0,minimalStatus:!0,focusMode:!1,underlineInternal:!0,underlineExternal:!0,folding:!0,lineNumbers:!1,readableLineLength:!1},c=class extends h.PluginSettingTab{constructor(s,d){super(s,d),this.plugin=d}display(){let{containerEl:s}=this;s.empty();let d=createFragment();d.appendText("For more options, use the "),d.appendChild(createEl("a",{text:"Style Settings",href:"obsidian://show-plugin?id=obsidian-style-settings"})),d.appendText(" plugin. See "),d.appendChild(createEl("a",{text:"Documentation",href:"https://minimal.guide/features/color-schemes"})),d.appendText(" for details.");let m=createFragment();m.createDiv({cls:"setting-item-name",text:"Color scheme"}),m.createDiv({cls:"setting-item-description"}).appendChild(d),new h.SettingGroup(s).setHeading(m).addSetting(t=>t.setName("Light mode color scheme").setDesc("Preset color options for light mode.").addDropdown(a=>a.addOption("minimal-default-light","Default").addOption("minimal-atom-light","Atom").addOption("minimal-ayu-light","Ayu").addOption("minimal-catppuccin-light","Catppuccin").addOption("minimal-eink-light","E-ink (beta)").addOption("minimal-everforest-light","Everforest").addOption("minimal-flexoki-light","Flexoki").addOption("minimal-gruvbox-light","Gruvbox").addOption("minimal-macos-light","macOS").addOption("minimal-nord-light","Nord").addOption("minimal-rose-pine-light","Ros\xE9 Pine").addOption("minimal-notion-light","Sky").addOption("minimal-solarized-light","Solarized").addOption("minimal-things-light","Things").setValue(this.plugin.settings.lightScheme).onChange(i=>{this.plugin.settings.lightScheme=i,this.plugin.saveData(this.plugin.settings),this.plugin.updateLightScheme()}))).addSetting(t=>t.setName("Light mode background contrast").setDesc("Level of contrast between sidebar and main content.").addDropdown(a=>a.addOption("minimal-light","Default").addOption("minimal-light-white","All white").addOption("minimal-light-tonal","Low contrast").addOption("minimal-light-contrast","High contrast").setValue(this.plugin.settings.lightStyle).onChange(i=>{this.plugin.settings.lightStyle=i,this.plugin.saveData(this.plugin.settings),this.plugin.updateLightStyle()}))).addSetting(t=>t.setName("Dark mode color scheme").setDesc("Preset colors options for dark mode.").addDropdown(a=>a.addOption("minimal-default-dark","Default").addOption("minimal-atom-dark","Atom").addOption("minimal-ayu-dark","Ayu").addOption("minimal-catppuccin-dark","Catppuccin").addOption("minimal-dracula-dark","Dracula").addOption("minimal-eink-dark","E-ink (beta)").addOption("minimal-everforest-dark","Everforest").addOption("minimal-flexoki-dark","Flexoki").addOption("minimal-gruvbox-dark","Gruvbox").addOption("minimal-macos-dark","macOS").addOption("minimal-nord-dark","Nord").addOption("minimal-rose-pine-dark","Ros\xE9 Pine").addOption("minimal-notion-dark","Sky").addOption("minimal-solarized-dark","Solarized").addOption("minimal-things-dark","Things").setValue(this.plugin.settings.darkScheme).onChange(i=>{this.plugin.settings.darkScheme=i,this.plugin.saveData(this.plugin.settings),this.plugin.updateDarkScheme()}))).addSetting(t=>t.setName("Dark mode background contrast").setDesc("Level of contrast between sidebar and main content.").addDropdown(a=>a.addOption("minimal-dark","Default").addOption("minimal-dark-tonal","Low contrast").addOption("minimal-dark-black","True black").setValue(this.plugin.settings.darkStyle).onChange(i=>{this.plugin.settings.darkStyle=i,this.plugin.saveData(this.plugin.settings),this.plugin.updateDarkStyle()}))),new h.SettingGroup(s).setHeading("Features").addSetting(t=>t.setName("Text labels for primary navigation").setDesc("Navigation items in the left sidebar uses text labels.").addToggle(a=>a.setValue(this.plugin.settings.labeledNav).onChange(i=>{this.plugin.settings.labeledNav=i,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Colorful window frame").setDesc("The top area of the app uses your accent color.").addToggle(a=>a.setValue(this.plugin.settings.colorfulFrame).onChange(i=>{this.plugin.settings.colorfulFrame=i,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Colorful active states").setDesc("Active file and menu items use your accent color.").addToggle(a=>a.setValue(this.plugin.settings.colorfulActiveStates).onChange(i=>{this.plugin.settings.colorfulActiveStates=i,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Colorful headings").setDesc("Headings use a different color for each size.").addToggle(a=>a.setValue(this.plugin.settings.colorfulHeadings).onChange(i=>{this.plugin.settings.colorfulHeadings=i,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Minimal status bar").setDesc("Turn off to use full-width status bar.").addToggle(a=>a.setValue(this.plugin.settings.minimalStatus).onChange(i=>{this.plugin.settings.minimalStatus=i,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Trim file names in sidebars").setDesc("Use ellipses to fit file names on a single line.").addToggle(a=>a.setValue(this.plugin.settings.trimNames).onChange(i=>{this.plugin.settings.trimNames=i,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Workspace borders").setDesc("Display divider lines between workspace elements.").addToggle(a=>a.setValue(this.plugin.settings.bordersToggle).onChange(i=>{this.plugin.settings.bordersToggle=i,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Focus mode").setDesc("Hide tab bar and status bar, hover to display. Can be toggled via hotkey.").addToggle(a=>a.setValue(this.plugin.settings.focusMode).onChange(i=>{this.plugin.settings.focusMode=i,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Underline internal links").setDesc("Show underlines on internal links.").addToggle(a=>a.setValue(this.plugin.settings.underlineInternal).onChange(i=>{this.plugin.settings.underlineInternal=i,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Underline external links").setDesc("Show underlines on external links.").addToggle(a=>a.setValue(this.plugin.settings.underlineExternal).onChange(i=>{this.plugin.settings.underlineExternal=i,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Maximize media").setDesc("Images and videos fill the width of the line.").addToggle(a=>a.setValue(this.plugin.settings.fullWidthMedia).onChange(i=>{this.plugin.settings.fullWidthMedia=i,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()})));let n=createFragment();n.appendText("These options can also be defined per file. See "),n.appendChild(createEl("a",{text:"Documentation",href:"https://minimal.guide/features/block-width"})),n.appendText(" for details.");let l=createFragment();l.createDiv({cls:"setting-item-name",text:"Layout"}),l.createDiv({cls:"setting-item-description"}).appendChild(n),new h.SettingGroup(s).setHeading(l).addSetting(t=>t.setName("Image grids").setDesc("Turn consecutive images into columns \u2014 to make a new row, add an extra line break between images.").addToggle(a=>a.setValue(this.plugin.settings.imgGrid).onChange(i=>{this.plugin.settings.imgGrid=i,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Chart width").setDesc("Default width for chart blocks.").addDropdown(a=>a.addOption("chart-default-width","Default").addOption("chart-wide","Wide line width").addOption("chart-max","Maximum line width").addOption("chart-100","100% pane width").setValue(this.plugin.settings.chartWidth).onChange(i=>{this.plugin.settings.chartWidth=i,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Iframe width").setDesc("Default width for iframe blocks.").addDropdown(a=>a.addOption("iframe-default-width","Default").addOption("iframe-wide","Wide line width").addOption("iframe-max","Maximum line width").addOption("iframe-100","100% pane width").setValue(this.plugin.settings.iframeWidth).onChange(i=>{this.plugin.settings.iframeWidth=i,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Image width").setDesc("Default width for image blocks.").addDropdown(a=>a.addOption("img-default-width","Default").addOption("img-wide","Wide line width").addOption("img-max","Maximum line width").addOption("img-100","100% pane width").setValue(this.plugin.settings.imgWidth).onChange(i=>{this.plugin.settings.imgWidth=i,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Map width").setDesc("Default width for map blocks.").addDropdown(a=>a.addOption("map-default-width","Default").addOption("map-wide","Wide line width").addOption("map-max","Maximum line width").addOption("map-100","100% pane width").setValue(this.plugin.settings.mapWidth).onChange(i=>{this.plugin.settings.mapWidth=i,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Table width").setDesc("Default width for table and Dataview blocks.").addDropdown(a=>a.addOption("table-default-width","Default").addOption("table-wide","Wide line width").addOption("table-max","Maximum line width").addOption("table-100","100% pane width").setValue(this.plugin.settings.tableWidth).onChange(i=>{this.plugin.settings.tableWidth=i,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))),new h.SettingGroup(s).setHeading("Typography").addSetting(t=>t.setName("Text font size").setDesc("Used for the main text (default 16).").addText(a=>a.setPlaceholder("16").setValue((this.plugin.settings.textNormal||"")+"").onChange(i=>{this.plugin.settings.textNormal=parseFloat(i),this.plugin.saveData(this.plugin.settings),this.plugin.setFontSize()}))).addSetting(t=>t.setName("Small font size").setDesc("Used for text in the sidebars and tabs (default 13).").addText(a=>a.setPlaceholder("13").setValue((this.plugin.settings.textSmall||"")+"").onChange(i=>{this.plugin.settings.textSmall=parseFloat(i),this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Line height").setDesc("Line height of text (default 1.5).").addText(a=>a.setPlaceholder("1.5").setValue((this.plugin.settings.lineHeight||"")+"").onChange(i=>{this.plugin.settings.lineHeight=parseFloat(i),this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Normal line width").setDesc("Number of characters per line (default 40).").addText(a=>a.setPlaceholder("40").setValue((this.plugin.settings.lineWidth||"")+"").onChange(i=>{this.plugin.settings.lineWidth=parseInt(i.trim()),this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Wide line width").setDesc("Number of characters per line for wide elements (default 50).").addText(a=>a.setPlaceholder("50").setValue((this.plugin.settings.lineWidthWide||"")+"").onChange(i=>{this.plugin.settings.lineWidthWide=parseInt(i.trim()),this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Maximum line width %").setDesc("Percentage of space inside a pane that a line can fill (default 88).").addText(a=>a.setPlaceholder("88").setValue((this.plugin.settings.maxWidth||"")+"").onChange(i=>{this.plugin.settings.maxWidth=parseInt(i.trim()),this.plugin.saveData(this.plugin.settings),this.plugin.refresh()}))).addSetting(t=>t.setName("Editor font").setDesc("Overrides the text font defined in Obsidian appearance settings when in edit mode.").addText(a=>a.setPlaceholder("").setValue((this.plugin.settings.editorFont||"")+"").onChange(i=>{this.plugin.settings.editorFont=i,this.plugin.saveData(this.plugin.settings),this.plugin.refresh()})))}};function O(e){e.addCommand({id:"increase-body-font-size",name:"Increase body font size",callback:()=>{e.settings.textNormal=e.settings.textNormal+.5,e.saveData(e.settings),e.setFontSize()}}),e.addCommand({id:"decrease-body-font-size",name:"Decrease body font size",callback:()=>{e.settings.textNormal=e.settings.textNormal-.5,e.saveData(e.settings),e.setFontSize()}})}function N(e){e.addCommand({id:"toggle-hidden-borders",name:"Toggle sidebar borders",callback:()=>{e.settings.bordersToggle=!e.settings.bordersToggle,e.saveData(e.settings),e.refresh()}}),e.addCommand({id:"toggle-colorful-headings",name:"Toggle colorful headings",callback:()=>{e.settings.colorfulHeadings=!e.settings.colorfulHeadings,e.saveData(e.settings),e.refresh()}}),e.addCommand({id:"toggle-minimal-focus-mode",name:"Toggle focus mode",callback:()=>{e.settings.focusMode=!e.settings.focusMode,e.saveData(e.settings),e.refresh()}}),e.addCommand({id:"toggle-minimal-colorful-frame",name:"Toggle colorful window frame",callback:()=>{e.settings.colorfulFrame=!e.settings.colorfulFrame,e.saveData(e.settings),e.refresh()}}),e.addCommand({id:"toggle-minimal-img-grid",name:"Toggle image grids",callback:()=>{e.settings.imgGrid=!e.settings.imgGrid,e.saveData(e.settings),e.refresh()}}),e.addCommand({id:"toggle-minimal-switch",name:"Switch between light and dark mode",callback:()=>{e.updateTheme()}})}var f=["minimal-light","minimal-light-tonal","minimal-light-contrast","minimal-light-white"],k=["minimal-dark","minimal-dark-tonal","minimal-dark-black"];var u=["table-100","table-default-width","table-wide","table-max"],S=["iframe-100","iframe-default-width","iframe-wide","iframe-max"],b=["img-100","img-default-width","img-wide","img-max"],v=["map-100","map-default-width","map-wide","map-max"],p=["chart-100","chart-default-width","chart-wide","chart-max"];function M(e){e.addCommand({id:"toggle-minimal-dark-cycle",name:"Cycle between dark mode styles",callback:()=>{e.settings.darkStyle=k[(k.indexOf(e.settings.darkStyle)+1)%k.length],e.saveData(e.settings),e.updateDarkStyle()}}),e.addCommand({id:"toggle-minimal-light-cycle",name:"Cycle between light mode styles",callback:()=>{e.settings.lightStyle=f[(f.indexOf(e.settings.lightStyle)+1)%f.length],e.saveData(e.settings),e.updateLightStyle()}}),e.addCommand({id:"cycle-minimal-table-width",name:"Cycle between table width options",callback:()=>{e.settings.tableWidth=u[(u.indexOf(e.settings.tableWidth)+1)%u.length],e.saveData(e.settings),e.refresh()}}),e.addCommand({id:"cycle-minimal-image-width",name:"Cycle between image width options",callback:()=>{e.settings.imgWidth=b[(b.indexOf(e.settings.imgWidth)+1)%b.length],e.saveData(e.settings),e.refresh()}}),e.addCommand({id:"cycle-minimal-iframe-width",name:"Cycle between iframe width options",callback:()=>{e.settings.iframeWidth=S[(S.indexOf(e.settings.iframeWidth)+1)%S.length],e.saveData(e.settings),e.refresh()}}),e.addCommand({id:"cycle-minimal-chart-width",name:"Cycle between chart width options",callback:()=>{e.settings.chartWidth=p[(p.indexOf(e.settings.chartWidth)+1)%p.length],e.saveData(e.settings),e.refresh()}}),e.addCommand({id:"cycle-minimal-map-width",name:"Cycle between map width options",callback:()=>{e.settings.mapWidth=v[(v.indexOf(e.settings.mapWidth)+1)%v.length],e.saveData(e.settings),e.refresh()}})}function F(e){e.addCommand({id:"toggle-minimal-light-default",name:"Use light mode (default)",callback:()=>{e.settings.lightStyle="minimal-light",e.saveData(e.settings),e.updateLightStyle()}}),e.addCommand({id:"toggle-minimal-light-white",name:"Use light mode (all white)",callback:()=>{e.settings.lightStyle="minimal-light-white",e.saveData(e.settings),e.updateLightStyle()}}),e.addCommand({id:"toggle-minimal-light-tonal",name:"Use light mode (low contrast)",callback:()=>{e.settings.lightStyle="minimal-light-tonal",e.saveData(e.settings),e.updateLightStyle()}}),e.addCommand({id:"toggle-minimal-light-contrast",name:"Use light mode (high contrast)",callback:()=>{e.settings.lightStyle="minimal-light-contrast",e.saveData(e.settings),e.updateLightStyle()}})}function E(e){e.addCommand({id:"toggle-minimal-dark-default",name:"Use dark mode (default)",callback:()=>{e.settings.darkStyle="minimal-dark",e.saveData(e.settings),e.updateDarkStyle()}}),e.addCommand({id:"toggle-minimal-dark-tonal",name:"Use dark mode (low contrast)",callback:()=>{e.settings.darkStyle="minimal-dark-tonal",e.saveData(e.settings),e.updateDarkStyle()}}),e.addCommand({id:"toggle-minimal-dark-black",name:"Use dark mode (true black)",callback:()=>{e.settings.darkStyle="minimal-dark-black",e.saveData(e.settings),e.updateDarkStyle()}})}function z(e){e.addCommand({id:"toggle-minimal-atom-light",name:"Switch light color scheme to Atom (light)",callback:()=>{e.settings.lightScheme="minimal-atom-light",e.saveData(e.settings),e.updateLightScheme(),e.updateLightStyle()}}),e.addCommand({id:"toggle-minimal-ayu-light",name:"Switch light color scheme to Ayu (light)",callback:()=>{e.settings.lightScheme="minimal-ayu-light",e.saveData(e.settings),e.updateLightScheme(),e.updateLightStyle()}}),e.addCommand({id:"toggle-minimal-catppuccin-light",name:"Switch light color scheme to Catppuccin (light)",callback:()=>{e.settings.lightScheme="minimal-catppuccin-light",e.saveData(e.settings),e.updateLightScheme(),e.updateLightStyle()}}),e.addCommand({id:"toggle-minimal-default-light",name:"Switch light color scheme to default (light)",callback:()=>{e.settings.lightScheme="minimal-default-light",e.saveData(e.settings),e.updateLightScheme(),e.updateLightStyle()}}),e.addCommand({id:"toggle-minimal-gruvbox-light",name:"Switch light color scheme to Gruvbox (light)",callback:()=>{e.settings.lightScheme="minimal-gruvbox-light",e.saveData(e.settings),e.updateLightScheme(),e.updateLightStyle()}}),e.addCommand({id:"toggle-minimal-eink-light",name:"Switch light color scheme to E-ink (light)",callback:()=>{e.settings.lightScheme="minimal-eink-light",e.saveData(e.settings),e.updateLightScheme(),e.updateLightStyle()}}),e.addCommand({id:"toggle-minimal-everforest-light",name:"Switch light color scheme to Everforest (light)",callback:()=>{e.settings.lightScheme="minimal-everforest-light",e.saveData(e.settings),e.updateLightScheme(),e.updateLightStyle()}}),e.addCommand({id:"toggle-minimal-flexoki-light",name:"Switch light color scheme to Flexoki (light)",callback:()=>{e.settings.lightScheme="minimal-flexoki-light",e.saveData(e.settings),e.updateLightScheme(),e.updateLightStyle()}}),e.addCommand({id:"toggle-minimal-macos-light",name:"Switch light color scheme to macOS (light)",callback:()=>{e.settings.lightScheme="minimal-macos-light",e.saveData(e.settings),e.updateLightScheme(),e.updateLightStyle()}}),e.addCommand({id:"toggle-minimal-notion-light",name:"Switch light color scheme to Sky (light)",callback:()=>{e.settings.lightScheme="minimal-notion-light",e.saveData(e.settings),e.updateLightScheme(),e.updateLightStyle()}}),e.addCommand({id:"toggle-minimal-nord-light",name:"Switch light color scheme to Nord (light)",callback:()=>{e.settings.lightScheme="minimal-nord-light",e.saveData(e.settings),e.updateLightScheme(),e.updateLightStyle()}}),e.addCommand({id:"toggle-minimal-rose-pine-light",name:"Switch light color scheme to Ros\xE9 Pine (light)",callback:()=>{e.settings.lightScheme="minimal-rose-pine-light",e.saveData(e.settings),e.updateLightScheme(),e.updateLightStyle()}}),e.addCommand({id:"toggle-minimal-solarized-light",name:"Switch light color scheme to Solarized (light)",callback:()=>{e.settings.lightScheme="minimal-solarized-light",e.saveData(e.settings),e.updateLightScheme(),e.updateLightStyle()}}),e.addCommand({id:"toggle-minimal-things-light",name:"Switch light color scheme to Things (light)",callback:()=>{e.settings.lightScheme="minimal-things-light",e.saveData(e.settings),e.updateLightScheme(),e.updateLightStyle()}})}function V(e){e.addCommand({id:"toggle-minimal-atom-dark",name:"Switch dark color scheme to Atom (dark)",callback:()=>{e.settings.darkScheme="minimal-atom-dark",e.saveData(e.settings),e.updateDarkScheme(),e.updateDarkStyle()}}),e.addCommand({id:"toggle-minimal-ayu-dark",name:"Switch dark color scheme to Ayu (dark)",callback:()=>{e.settings.darkScheme="minimal-ayu-dark",e.saveData(e.settings),e.updateDarkScheme(),e.updateDarkStyle()}}),e.addCommand({id:"toggle-minimal-catppuccin-dark",name:"Switch dark color scheme to Catppuccin (dark)",callback:()=>{e.settings.darkScheme="minimal-catppuccin-dark",e.saveData(e.settings),e.updateDarkScheme(),e.updateDarkStyle()}}),e.addCommand({id:"toggle-minimal-dracula-dark",name:"Switch dark color scheme to Dracula (dark)",callback:()=>{e.settings.darkScheme="minimal-dracula-dark",e.saveData(e.settings),e.updateDarkScheme(),e.updateDarkStyle()}}),e.addCommand({id:"toggle-minimal-default-dark",name:"Switch dark color scheme to default (dark)",callback:()=>{e.settings.darkScheme="minimal-default-dark",e.saveData(e.settings),e.updateDarkScheme(),e.updateDarkStyle()}}),e.addCommand({id:"toggle-minimal-eink-dark",name:"Switch dark color scheme to E-ink (dark)",callback:()=>{e.settings.darkScheme="minimal-eink-dark",e.saveData(e.settings),e.updateDarkScheme(),e.updateDarkStyle()}}),e.addCommand({id:"toggle-minimal-everforest-dark",name:"Switch dark color scheme to Everforest (dark)",callback:()=>{e.settings.darkScheme="minimal-everforest-dark",e.saveData(e.settings),e.updateDarkScheme(),e.updateDarkStyle()}}),e.addCommand({id:"toggle-minimal-flexoki-dark",name:"Switch dark color scheme to Flexoki (dark)",callback:()=>{e.settings.darkScheme="minimal-flexoki-dark",e.saveData(e.settings),e.updateDarkScheme(),e.updateDarkStyle()}}),e.addCommand({id:"toggle-minimal-gruvbox-dark",name:"Switch dark color scheme to Gruvbox (dark)",callback:()=>{e.settings.darkScheme="minimal-gruvbox-dark",e.saveData(e.settings),e.updateDarkScheme(),e.updateDarkStyle()}}),e.addCommand({id:"toggle-minimal-macos-dark",name:"Switch dark color scheme to macOS (dark)",callback:()=>{e.settings.darkScheme="minimal-macos-dark",e.saveData(e.settings),e.updateDarkScheme(),e.updateDarkStyle()}}),e.addCommand({id:"toggle-minimal-nord-dark",name:"Switch dark color scheme to Nord (dark)",callback:()=>{e.settings.darkScheme="minimal-nord-dark",e.saveData(e.settings),e.updateDarkScheme(),e.updateDarkStyle()}}),e.addCommand({id:"toggle-minimal-notion-dark",name:"Switch dark color scheme to Sky (dark)",callback:()=>{e.settings.darkScheme="minimal-notion-dark",e.saveData(e.settings),e.updateDarkScheme(),e.updateDarkStyle()}}),e.addCommand({id:"toggle-minimal-rose-pine-dark",name:"Switch dark color scheme to Ros\xE9 Pine (dark)",callback:()=>{e.settings.darkScheme="minimal-rose-pine-dark",e.saveData(e.settings),e.updateDarkScheme(),e.updateDarkStyle()}}),e.addCommand({id:"toggle-minimal-solarized-dark",name:"Switch dark color scheme to Solarized (dark)",callback:()=>{e.settings.darkScheme="minimal-solarized-dark",e.saveData(e.settings),e.updateDarkScheme(),e.updateDarkStyle()}}),e.addCommand({id:"toggle-minimal-things-dark",name:"Switch dark color scheme to Things (dark)",callback:()=>{e.settings.darkScheme="minimal-things-dark",e.saveData(e.settings),e.updateDarkScheme(),e.updateDarkStyle()}})}function A(e){O(e),M(e),N(e),F(e),E(e),z(e),V(e)}var Z=["--font-ui-small","--line-height","--line-width","--line-width-wide","--max-width","--font-editor-override"];function H(){document.body.classList.add("minimal-theme")}function P(){for(let e of Z)document.body.style.removeProperty(e);document.body.classList.remove("minimal-theme")}function U(e){L(),x(),document.body.addClass(e.lightStyle,e.lightScheme,e.darkStyle,e.darkScheme),document.body.classList.toggle("borders-none",!e.bordersToggle),document.body.classList.toggle("colorful-headings",e.colorfulHeadings),document.body.classList.toggle("colorful-frame",e.colorfulFrame),document.body.classList.toggle("colorful-active",e.colorfulActiveStates),document.body.classList.toggle("minimal-focus-mode",e.focusMode),document.body.classList.toggle("links-int-on",e.underlineInternal),document.body.classList.toggle("links-ext-on",e.underlineExternal),document.body.classList.toggle("full-width-media",e.fullWidthMedia),document.body.classList.toggle("img-grid",e.imgGrid),document.body.classList.toggle("minimal-status-off",!e.minimalStatus),document.body.classList.toggle("full-file-names",!e.trimNames),document.body.classList.toggle("labeled-nav",e.labeledNav),document.body.classList.toggle("minimal-folding",e.folding),document.body.addClass(e.chartWidth,e.tableWidth,e.imgWidth,e.iframeWidth,e.mapWidth),document.body.setCssProps({"--font-ui-small":`${e.textSmall}px`,"--line-height":`${e.lineHeight}`,"--line-width":`${e.lineWidth}rem`,"--line-width-wide":`${e.lineWidthWide}rem`,"--max-width":`${e.maxWidth}%`,"--font-editor-override":e.editorFont})}function x(){document.body.removeClass("borders-none","colorful-headings","colorful-frame","colorful-active","minimal-focus-mode","links-int-on","links-ext-on","full-width-media","img-grid","minimal-status-off","full-file-names","labeled-nav","minimal-folding"),document.body.removeClass("table-wide","table-max","table-100","table-default-width","iframe-wide","iframe-max","iframe-100","iframe-default-width","img-wide","img-max","img-100","img-default-width","chart-wide","chart-max","chart-100","chart-default-width","map-wide","map-max","map-100","map-default-width")}function L(){document.body.removeClass("minimal-light","minimal-light-tonal","minimal-light-contrast","minimal-light-white","minimal-dark","minimal-dark-tonal","minimal-dark-black")}function D(){document.body.removeClass("minimal-atom-dark","minimal-ayu-dark","minimal-catppuccin-dark","minimal-default-dark","minimal-dracula-dark","minimal-eink-dark","minimal-everforest-dark","minimal-flexoki-dark","minimal-gruvbox-dark","minimal-macos-dark","minimal-nord-dark","minimal-notion-dark","minimal-rose-pine-dark","minimal-solarized-dark","minimal-things-dark")}function y(){document.body.removeClass("minimal-atom-light","minimal-ayu-light","minimal-catppuccin-light","minimal-default-light","minimal-eink-light","minimal-everforest-light","minimal-flexoki-light","minimal-gruvbox-light","minimal-macos-light","minimal-nord-light","minimal-notion-light","minimal-rose-pine-light","minimal-solarized-light","minimal-things-light")}function G(e,s){e.vault.setConfig("baseFontSize",s),e.updateFontSize()}function I(e,s){document.body.removeClass("theme-light","minimal-dark","minimal-dark-tonal","minimal-dark-black"),document.body.addClass("theme-dark",s.darkStyle),e.vault.getConfig("theme")!=="system"&&(e.setTheme("obsidian"),e.vault.setConfig("theme","obsidian")),e.workspace.trigger("css-change")}function R(e,s){document.body.removeClass("theme-dark","minimal-light","minimal-light-tonal","minimal-light-contrast","minimal-light-white"),document.body.addClass("theme-light",s.lightStyle),e.vault.getConfig("theme")!=="system"&&(e.setTheme("moonstone"),e.vault.setConfig("theme","moonstone")),e.workspace.trigger("css-change")}function $(e){D(),document.body.addClass(e.darkScheme)}function B(e){y(),document.body.addClass(e.lightScheme)}function _(e){if(e.vault.getConfig("theme")==="system")document.body.classList.contains("theme-light")?(document.body.removeClass("theme-light"),document.body.addClass("theme-dark")):(document.body.removeClass("theme-dark"),document.body.addClass("theme-light"));else{document.body.classList.contains("theme-light")?(document.body.removeClass("theme-light"),document.body.addClass("theme-dark")):(document.body.removeClass("theme-dark"),document.body.addClass("theme-light"));let d=e.vault.getConfig("theme")==="moonstone"?"obsidian":"moonstone";e.setTheme(d),e.vault.setConfig("theme",d)}e.workspace.trigger("css-change")}function T(e){let s=document.getElementsByClassName("mod-left-split")[0],d=document.getElementsByClassName("side-dock-ribbon")[0];s&&d&&document.body.classList.contains("theme-light")&&e.lightStyle=="minimal-light-contrast"?(s.addClass("theme-dark"),d.addClass("theme-dark")):s&&d&&(s.removeClass("theme-dark"),d.removeClass("theme-dark"))}var w=class extends j.Plugin{onload(){return g(this,null,function*(){yield this.loadSettings(),this.addSettingTab(new c(this.app,this)),H(),this.setupListeners(),this.refresh(),A(this)})}onunload(){let s=document.getElementsByClassName("mod-left-split")[0];s&&s.removeClass("theme-dark");let d=document.getElementsByClassName("side-dock-ribbon")[0];d&&d.removeClass("theme-dark"),P(),L(),x(),y(),D()}loadSettings(){return g(this,null,function*(){this.settings=Object.assign({},W,yield this.loadData())})}saveSettings(){return g(this,null,function*(){yield this.saveData(this.settings)})}setupListeners(){let s=()=>{let m=this.app.vault.getConfig("baseFontSize");this.settings.textNormal=m;let o=!1,n=!1,l=!1;this.app.vault.getConfig("foldHeading")?(this.settings.folding=!0,o=!0):this.settings.folding=!1,this.app.vault.getConfig("showLineNumber")?(this.settings.lineNumbers=!0,n=!0):this.settings.lineNumbers=!1,this.app.vault.getConfig("readableLineLength")?(this.settings.readableLineLength=!0,l=!0):this.settings.readableLineLength=!1;let r=document.body.classList;r.toggle("minimal-folding",o),r.toggle("minimal-line-nums",n),r.toggle("minimal-readable",l),r.toggle("minimal-readable-off",!l),this.saveData(this.settings)},d=()=>{T(this.settings)};this.registerEvent(this.app.vault.on("config-changed",s)),this.registerEvent(this.app.workspace.on("css-change",d)),s(),this.app.workspace.onLayoutReady(()=>{T(this.settings)})}refresh(){U(this.settings)}setFontSize(){G(this.app,this.settings.textNormal)}updateDarkStyle(){I(this.app,this.settings)}updateLightStyle(){R(this.app,this.settings)}updateDarkScheme(){$(this.settings)}updateLightScheme(){B(this.settings)}updateTheme(){_(this.app)}}; + +/* nosourcemap */ \ No newline at end of file diff --git a/plugins/obsidian-minimal-settings/manifest.json b/plugins/obsidian-minimal-settings/manifest.json new file mode 100644 index 0000000..32e6e7c --- /dev/null +++ b/plugins/obsidian-minimal-settings/manifest.json @@ -0,0 +1,11 @@ +{ + "id": "obsidian-minimal-settings", + "name": "Minimal Theme Settings", + "version": "8.2.3", + "minAppVersion": "1.11.1", + "description": "Change the colors, fonts and features of Minimal Theme.", + "author": "@kepano", + "authorUrl": "https://www.twitter.com/kepano", + "fundingUrl": "https://www.buymeacoffee.com/kepano", + "isDesktopOnly": false +} diff --git a/plugins/obsidian-minimal-settings/styles.css b/plugins/obsidian-minimal-settings/styles.css new file mode 100644 index 0000000..5c5ce6c --- /dev/null +++ b/plugins/obsidian-minimal-settings/styles.css @@ -0,0 +1,3 @@ +.setting-group > .setting-item-heading .setting-item-description { + margin-top: 4px; +} \ No newline at end of file diff --git a/plugins/typewriter-mode/data.json b/plugins/typewriter-mode/data.json new file mode 100644 index 0000000..03978d0 --- /dev/null +++ b/plugins/typewriter-mode/data.json @@ -0,0 +1,69 @@ +{ + "general": { + "version": "1.5.0", + "isAnnounceUpdatesEnabled": false, + "isPluginActivated": true, + "isOnlyActivateAfterFirstInteractionEnabled": true, + "enabledPlatforms": "desktop", + "enabledFilePaths": [], + "disabledFilePaths": [] + }, + "typewriter": { + "isTypewriterScrollEnabled": true, + "isOnlyMaintainTypewriterOffsetWhenReachedEnabled": true, + "isTypewriterOnlyUseCommandsEnabled": false, + "typewriterOffset": 0.5 + }, + "keepLinesAboveAndBelow": { + "isKeepLinesAboveAndBelowEnabled": false, + "linesAboveAndBelow": 5 + }, + "maxChars": { + "isMaxCharsPerLineEnabled": false, + "maxCharsPerLine": 64 + }, + "dimming": { + "isDimUnfocusedEnabled": true, + "isDimUnfocusedOnlyInWritingFocusModeEnabled": true, + "isDimHighlightListParentEnabled": false, + "isDimTableAsOneEnabled": true, + "dimUnfocusedMode": "sentences", + "dimUnfocusedEditorsBehavior": "dim", + "dimmedOpacity": 0.35, + "isPauseDimUnfocusedWhileScrollingEnabled": true, + "isPauseDimUnfocusedWhileSelectingEnabled": true + }, + "currentLine": { + "isHighlightCurrentLineEnabled": false, + "isHighlightCurrentLineOnlyInWritingFocusModeEnabled": false, + "isFadeLinesEnabled": false, + "isFadeLinesOnlyInWritingFocusModeEnabled": false, + "fadeLinesIntensity": 0.25, + "isHighlightCurrentLineOnlyInFocusedEditorEnabled": false, + "isPauseCurrentLineHighlightWhileScrollingEnabled": true, + "isPauseCurrentLineHighlightWhileSelectingEnabled": false, + "currentLineHighlightStyle": "box", + "currentLineHighlightUnderlineThickness": 1, + "currentLineHighlightColor-dark": "#444444", + "currentLineHighlightColor-light": "#dddddd" + }, + "writingFocus": { + "doesWritingFocusShowHeader": true, + "doesWritingFocusShowVignette": false, + "doesWritingFocusShowStatusBar": false, + "isWritingFocusFullscreen": true, + "writingFocusVignetteStyle": "box", + "writingFocusFontSize": 0 + }, + "restoreCursorPosition": { + "isRestoreCursorPositionEnabled": false, + "cursorPositions": {} + }, + "hemingwayMode": { + "isHemingwayModeEnabled": false, + "isHemingwayModeOnlyInWritingFocusModeEnabled": false, + "isAllowBackspaceInHemingwayModeEnabled": false, + "isShowHemingwayModeStatusBarEnabled": true, + "hemingwayModeStatusBarText": "Hemingway" + } +} \ No newline at end of file diff --git a/plugins/typewriter-mode/main.js b/plugins/typewriter-mode/main.js new file mode 100644 index 0000000..9e5a9cb --- /dev/null +++ b/plugins/typewriter-mode/main.js @@ -0,0 +1,18 @@ +var{defineProperty:kt,getOwnPropertyNames:Oe,getOwnPropertyDescriptor:Le}=Object,He=Object.prototype.hasOwnProperty;function Ke(t){return this[t]}var Pe=(t)=>{var e=(pe??=new WeakMap).get(t),i;if(e)return e;if(e=kt({},"__esModule",{value:!0}),t&&typeof t==="object"||typeof t==="function"){for(var n of Oe(t))if(!He.call(e,n))kt(e,n,{get:Ke.bind(t,n),enumerable:!(i=Le(t,n))||i.enumerable})}return pe.set(t,e),e},pe;var Be=(t)=>t;function Ee(t,e){this[t]=Be.bind(null,e)}var ke=(t,e)=>{for(var i in e)kt(t,i,{get:e[i],enumerable:!0,configurable:!0,set:Ee.bind(e,i)})};var Ie={};ke(Ie,{default:()=>me});module.exports=Pe(Ie);var De=require("obsidian");var V=require("obsidian");var E=`**Thank you for using Typewriter Mode!** I am a student at the University of Tübingen and develop this plugin in my spare time. If you like the plugin, please consider supporting me on [GitHub Sponsors](https://github.com/sponsors/davisriedel) or [Buy Me a Coffee](https://www.buymeacoffee.com/davis.riedel). Your support ensures the continuous development and maintenance of the plugin.

Buy Me A Coffee
+ +If you find any bugs or have a feature request, please [open an issue on GitHub](https://github.com/davisriedel/obsidian-typewriter-mode/issues). Contributions are welcome too. +`;var he=`# Typewriter Mode updated to v{{tag-name}} + +{{funding}} + +## What's new? + +{{release-notes}} +`;async function Re(t,e,i,n){let s=(await V.requestUrl(`https://api.github.com/repos/${t}/${e}/releases`)).json;if(!Array.isArray(s))throw Error(`Failed to fetch releases: ${"message"in s?s.message:"Unknown error"}`);if(i==null)return s.filter((m)=>!(m.draft||m.prerelease));let d=s.findIndex((m)=>m.tag_name===i);if(d===-1)throw Error(`Could not find release with tag ${i}`);return s.slice(0,d).filter((m)=>!m.draft&&(n||!m.prerelease))}class $ extends V.Modal{currentVersion;previousVersion;constructor(t,e,i){super(t);this.currentVersion=e,this.previousVersion=i}fetchAndDisplayReleaseNotes(){let t=this.currentVersion.includes("-");Re("davisriedel","obsidian-typewriter-mode",this.previousVersion,t).then((e)=>{if(e.length===0)this.displayError(Error("No new releases found"));else this.displayReleaseNotes(e)}).catch((e)=>{this.displayError(e)})}onOpen(){let{contentEl:t}=this;t.empty(),t.createEl("h2",{text:"Fetching release notes..."}),this.fetchAndDisplayReleaseNotes()}displayReleaseNotes(t){let{contentEl:e}=this;e.empty(),e.classList.add("ptm-update-modal");let i=e.createDiv(),n=t.map((d)=>`### ${d.tag_name} + +${d.body}`).join(` +--- +`),o=he.replace("{{tag-name}}",t[0].tag_name).replace("{{funding}}",E).replace("{{release-notes}}",n),s=new V.Component;s.load(),V.MarkdownRenderer.render(this.app,o,i,this.app.vault.getRoot().path,s).catch((d)=>{})}displayError(t){let{contentEl:e}=this;e.empty(),e.classList.add("ptm-update-modal"),e.createDiv().createEl("h2",{text:t.message})}}var T=require("@codemirror/state"),R=require("@codemirror/view"),f=require("obsidian");function S(t){return t.dom.ownerDocument.querySelector(".workspace-leaf.mod-active .cm-editor, .mod-inside-iframe .cm-editor")}function k(t){return t.dom.ownerDocument.querySelector(".workspace-leaf.mod-active .cm-scroller, .mod-inside-iframe .cm-scroller")}function $t(t){return t.dom.ownerDocument.querySelector(".workspace-leaf.mod-active .cm-sizer, .mod-inside-iframe .cm-sizer")}class Tt{tm;view;constructor(t,e){this.tm=t,this.view=e}getActiveLineProp(t){let e=this.view.contentDOM.querySelector(".cm-active.cm-line")?.getCssPropertyValue(t).replace("px","");if(!e)return null;return Number.parseFloat(e)}getActiveLineOffset(t){let e=t.top,i=S(this.view);if(!i)return 0;let n=i.getBoundingClientRect().top;return e-n}getTypewriterOffset(){let t=S(this.view);if(!t)return 0;return t.clientHeight*this.tm.settings.typewriter.typewriterOffset}getTypewriterPositionData(){let t=this.view.coordsAtPos(this.view.state.selection.main.head);if(!t)return null;let e=t.bottom-t.top,i=this.getActiveLineProp("line-height");if(!i)return null;let n=0,o=0;if(e>i)n=e,o=0;else n=i,o=(n-e)/2;let s=this.getTypewriterOffset(),d=this.getActiveLineOffset(t),m=this.tm.settings.typewriter.isTypewriterScrollEnabled,y=this.tm.settings.keepLinesAboveAndBelow.isKeepLinesAboveAndBelowEnabled,C=this.tm.settings.typewriter.isOnlyMaintainTypewriterOffsetWhenReachedEnabled,h=S(this.view),g=k(this.view),u;if(!(h&&g))u=0;else if(m){if(u=s,C)if(d<0)u=0;else u=g.scrollTop+dB;if(we)u=Et;else if(ve)u=B;else u=d}else u=this.getActiveLineOffset(t);return{typewriterOffset:s,scrollOffset:u,activeLineOffset:d,lineHeight:n,lineOffset:o}}}var Rt=require("@codemirror/view"),ze=new Set([")","]","}"]);function Ue(t,e,i){return e.some((n)=>t.slice(i+1-n.length,i+1)===n)}function Ye(t,e){return ze.has(t[e+1])}function ge(t){return!!t&&(t>="a"&&t<="z"||t>="A"&&t<="Z")}function We(t,e){return ge(t[e-1])&&!ge(t[e-2])}function ye(t,e,i){if(Ue(t,e,i))return!1;if(Ye(t,i))return!1;if(We(t,i))return!1;return!0}function le(t,e,i){let n=t.sentenceDelimiters.split(""),o=t.extraCharacters.split(""),s=t.ignoredPatterns.split(` +`),d=e.from,m=e.text,y=-1;for(let h=i-d-1;h>=0;h--){if(!n.contains(m[h]))continue;if(!ye(m,s,h))continue;let g=1;while(m[h+g]===" "&&gs.from)d=le(e,s,o-1);let{start:m,end:y}=d;if(y==null)y=s.to;function C(h,g,u){i.push(Rt.Decoration.mark({inclusive:!0,attributes:{},class:u}).range(h,g))}if(m!==y){if(C(m,y,"active-sentence"),s.from!==m)C(s.from,m,"active-paragraph");if(y!==s.to)C(y,s.to,"active-paragraph")}return Rt.Decoration.set(i,!0)}var zt="ptm-current-line",Ut="ptm-current-line-fade-before",Yt="ptm-current-line-fade-after",Xe=/^(select|input|delete|undo|redo)(\..+)?$/,je=/^(select.pointer)$/,qe=/^(input|delete|undo|redo)(\..+)?$/,Ae=/^(select)(\..+)?$/;class ce{tm;view;domResizeObserver=null;onScrollEventKey;isListeningToOnScroll=!1;isOnScrollClassSet=!1;isInitialInteraction=!0;isRenderingAllowedUserEvent=!1;decorations=T.RangeSet.empty;isPerWindowPropsReloadRequired=!1;moveByCommandBound=this.moveByCommand.bind(this);onScrollBound=this.onScroll.bind(this);onResizeBound=this.onResize.bind(this);constructor(t,e){this.tm=t,this.view=e,this.onScrollEventKey=f.Platform.isMobile?"touchmove":"wheel",this.onLoad()}destroy(){this.domResizeObserver?.disconnect(),this.destroyCurrentLine(),this.removeScrollListener(),window.removeEventListener("moveByCommand",this.moveByCommandBound)}onLoad(){this.domResizeObserver=new ResizeObserver(this.onResizeBound),this.domResizeObserver.observe(this.view.dom.ownerDocument.body),window.addEventListener("moveByCommand",this.moveByCommandBound),this.watchEmbeddedMarkdown(),this.onReconfigured(),window.requestAnimationFrame(()=>{this.restoreCursorPosition(this.view)})}userEventAllowed(t){let e=Xe,i=je;if(this.tm.settings.typewriter.isTypewriterOnlyUseCommandsEnabled)e=qe,i=Ae;return e.test(t)&&!i.test(t)}inspectTransactions(t){let e=[],i=!1;for(let o of t.transactions){if(o.reconfigured)i=!0;let s=o.annotation(T.Transaction.userEvent);if(s!==void 0)e.push(s)}if(e.length===0)return{isReconfigured:i,isUserEvent:!1,allowedUserEvents:null};return{isReconfigured:!1,isUserEvent:!0,allowedUserEvents:e.reduce((o,s)=>o&&this.userEventAllowed(s),e.length>0)}}update(t){let{isReconfigured:e,isUserEvent:i,allowedUserEvents:n}=this.inspectTransactions(t);if(this.isTableCell())return;if(e)this.onReconfigured();if(this.isDisabled())return;if(this.isPerWindowPropsReloadRequired){this.updateAfterExternalEvent();return}if(!i){this.updateNonUserEvent();return}if(n)this.updateAllowedUserEvent();else this.updateDisallowedUserEvent()}isTableCell(){return this.view.dom.parentElement?.parentElement?.className.contains("table-cell-wrapper")??!1}isMarkdownFile(){let t=this.tm.plugin.app.workspace.getActiveViewOfType(f.ItemView);if(!t)return this.isPerWindowPropsReloadRequired=!0,!1;return t.getViewType()==="markdown"}isDisabledInFrontmatter(){let t=this.tm.plugin.app.workspace.getActiveFile();if(!t)return this.isPerWindowPropsReloadRequired=!0,!1;let e=this.tm.plugin.app.metadataCache.getFileCache(t)?.frontmatter;if(!e)return!1;if(!Object.hasOwn(e,"typewriter-mode"))return!1;return!e["typewriter-mode"]}matchesPath(t,e){return e===""||t===e||t.startsWith(`${e}/`)}isDisabledByFilePaths(){let t=this.tm.plugin.app.workspace.getActiveFile();if(!t)return this.isPerWindowPropsReloadRequired=!0,!1;let{path:e}=t,{enabledFilePaths:i,disabledFilePaths:n}=this.tm.settings.general;if(n?.length>0){for(let o of n)if(this.matchesPath(e,o))return!0}if(i?.length>0){for(let o of i)if(this.matchesPath(e,o))return!1;return!0}return!1}isDisabledByPlatform(){let{enabledPlatforms:t}=this.tm.settings.general;switch(t){case"desktop":return f.Platform.isMobile;case"mobile":return f.Platform.isDesktop;case"tablet":return!f.Platform.isTablet;case"phone":return!f.Platform.isPhone;case"desktop-and-tablet":return f.Platform.isPhone;default:return!1}}isDisabled(){if(!this.tm.settings.general.isPluginActivated)return!0;if(this.isDisabledByPlatform())return!0;if(!this.isMarkdownFile())return!0;if(this.isDisabledByFilePaths())return!0;if(this.isDisabledInFrontmatter())return!0}onReconfigured(){if(this.isPerWindowPropsReloadRequired=!0,this.isDisabled())this.destroyCurrentLine(),this.resetPadding(this.view),this.loadPerWindowProps();else this.updateAfterExternalEvent()}watchEmbeddedMarkdown(){let e=this.tm.perWindowProps;new MutationObserver((n)=>{n.forEach((o)=>{[].forEach.call(o.addedNodes,(s)=>{if(s.nodeType===Node.ELEMENT_NODE&&s.matches(".markdown-embed-content iframe.embed-iframe")){let d=s.contentDocument?.body;if(!d)return;this.loadPerWindowPropsOnElement(e,d)}})})}).observe(this.view.dom.ownerDocument,{childList:!0,subtree:!0})}loadPerWindowPropsOnElement(t,e){for(let i of t.allBodyClasses)e.classList.remove(i);if(e.addClasses(t.persistentBodyClasses),!this.isDisabled())e.addClasses(t.bodyClasses);e.setCssProps(t.cssVariables),e.setAttrs(t.bodyAttrs)}getMarkdownBodies(){let t=this.view.dom.ownerDocument.querySelectorAll(".markdown-embed-content iframe.embed-iframe"),e=Array.from(t).flatMap((i)=>{let n=i.contentDocument?.body;return n?[n]:[]});return[this.view.dom.ownerDocument.body,...e]}loadPerWindowProps(){if(!this.isPerWindowPropsReloadRequired)return;this.isPerWindowPropsReloadRequired=!1;let t=this.getMarkdownBodies();for(let e of t)this.loadPerWindowPropsOnElement(this.tm.perWindowProps,e)}loadCurrentLine(t=this.view){let e=S(t);if(!e)return null;let i=e.querySelector(`.${zt}`);if(!i)i=e.ownerDocument.createElement("div"),i.className=zt,e.appendChild(i);if(this.tm.settings.currentLine.isFadeLinesEnabled){let n=e.querySelector(`.${Ut}`),o=e.querySelector(`.${Yt}`);if(!n)n=e.ownerDocument.createElement("div"),n.className=Ut,e.appendChild(n);if(!o)o=e.ownerDocument.createElement("div"),o.className=Yt,e.appendChild(o);return{currentLine:i,fadeBefore:n,fadeAfter:o}}return{currentLine:i}}destroyCurrentLine(t=this.view){let e=S(t);if(!e)return;let i=e.querySelector(`.${zt}`),n=e.querySelector(`.${Ut}`),o=e.querySelector(`.${Yt}`);i?.remove(),n?.remove(),o?.remove()}setupScrollListener(){if(this.isListeningToOnScroll)return;let t=k(this.view);if(t)t.addEventListener(this.onScrollEventKey,this.onScrollBound,{passive:!0}),this.isListeningToOnScroll=!0}removeScrollListener(){if(!this.isListeningToOnScroll)return;let t=k(this.view);if(t)t.removeEventListener(this.onScrollEventKey,this.onScrollBound),this.isListeningToOnScroll=!1}measureTypewriterPosition(t,e){this.view.requestMeasure({key:t,read:(i)=>new Tt(this.tm,i).getTypewriterPositionData(),write:(i,n)=>{if(!i)return;window.requestAnimationFrame(()=>{e(i,n)})}})}updateAllowedUserEvent(){this.removeScrollListener(),this.applyDecorations();let t=S(this.view);if(t){if(t.classList.remove("ptm-scroll"),this.isOnScrollClassSet=!1,t.classList.remove("ptm-select"),this.isInitialInteraction)t.classList.remove("ptm-first-open"),this.isInitialInteraction=!1}this.isRenderingAllowedUserEvent=!0,this.measureTypewriterPosition("TypewriterModeUpdateAfterAllowedUserEvent",(e,i)=>{if(!e)return;this.recenterAndMoveCurrentLine(i,e),this.isRenderingAllowedUserEvent=!1,this.handleCursorStateUpdate(i),this.setupScrollListener()})}updateDisallowedUserEvent(){if(this.isRenderingAllowedUserEvent)return;let t=S(this.view);if(t){if(this.isInitialInteraction)t.classList.remove("ptm-first-open"),this.isInitialInteraction=!1;t.classList.add("ptm-select")}this.measureTypewriterPosition("TypewriterModeUpdateAfterDisallowedUserEvent",(e,i)=>{if(!e)return;this.handleCursorStateUpdate(i);let{activeLineOffset:n,lineHeight:o,lineOffset:s}=e;if(this.tm.settings.currentLine.isHighlightCurrentLineEnabled||this.tm.settings.currentLine.isFadeLinesEnabled)this.moveCurrentLine(i,n,s,o)})}updateNonUserEvent(){if(this.applyDecorations(),!this.isInitialInteraction)return;if(this.tm.settings.general.isOnlyActivateAfterFirstInteractionEnabled){let t=S(this.view);if(t)t.classList.add("ptm-first-open")}}moveByCommand(){let t=S(this.view);if(t)t.classList.remove("ptm-select");this.updateAllowedUserEvent()}onResize(){if(this.isDisabled())return;this.updateAfterExternalEvent()}onScroll(){this.measureTypewriterPosition("TypewriterModeOnScroll",(t,e)=>{if(!this.isOnScrollClassSet){let s=S(this.view);if(s)s.classList.add("ptm-scroll"),this.isOnScrollClassSet=!0}if(!t)return;let{activeLineOffset:i,lineOffset:n,lineHeight:o}=t;this.moveCurrentLine(e,i,n,o)})}applyDecorations(){if(!this.tm.settings.dimming.isDimUnfocusedEnabled||this.tm.settings.dimming.dimUnfocusedMode!=="sentences")return;this.decorations=ue(this.view,{sentenceDelimiters:".!?",extraCharacters:"*”’",ignoredPatterns:"Mr."})}updateAfterExternalEvent(){if(this.isTableCell()){this.destroyCurrentLine();return}this.loadPerWindowProps(),this.applyDecorations(),this.measureTypewriterPosition("TypewriterModeUpdateAfterExternalEvent",(t,e)=>{if(this.setupScrollListener(),!t)return;if(this.tm.settings.typewriter.isTypewriterScrollEnabled)this.setPadding(e,t.typewriterOffset);this.recenterAndMoveCurrentLine(e,t)})}moveCurrentLine(t,e,i,n){let o=this.loadCurrentLine(t);if(!o)return;if(o.currentLine.style.height=`${n}px`,o.currentLine.style.top=`${e-i}px`,o.fadeBefore)o.fadeBefore.style.top=`calc(${e-i}px - 100vh)`;if(o.fadeAfter)o.fadeAfter.style.top=`${e-i+n}px`}setPadding(t,e){let i=$t(t);if(!i)return;i.style.padding=this.tm.settings.typewriter.isOnlyMaintainTypewriterOffsetWhenReachedEnabled?`0 0 ${e}px 0`:`${e}px 0`}resetPadding(t){if(!this.isMarkdownFile())return;let e=$t(t);if(!e)return;e.style.removeProperty("padding")}recenter(t,e){let i=t.state.selection.main.head,n=R.EditorView.scrollIntoView(i,{y:"start",yMargin:e}),o=t.state.update({effects:n});t.dispatch(o)}recenterAndMoveCurrentLine(t,{scrollOffset:e,lineOffset:i,lineHeight:n}){let o=this.tm.settings.typewriter.isTypewriterScrollEnabled,s=this.tm.settings.keepLinesAboveAndBelow.isKeepLinesAboveAndBelowEnabled,d=this.tm.settings.currentLine.isHighlightCurrentLineEnabled,m=this.tm.settings.currentLine.isFadeLinesEnabled;if(o||s)this.recenter(t,e);if(d||m)this.moveCurrentLine(t,e,i,n)}handleCursorStateUpdate(t){if(!this.tm.settings.restoreCursorPosition.isRestoreCursorPositionEnabled)return;this.tm.getRestoreCursorPositionFeature().setCursorState(t.state.selection.main)}restoreCursorPosition(t){let e=this.tm.getRestoreCursorPositionFeature();e.saveState().catch((n)=>{});let i=this.tm.plugin.app.workspace.getActiveFile()?.path;if(i){let n=e.state[i];if(n){if(!this.tm.plugin.app.workspace.containerEl.querySelector("span.is-flashing"))t.dispatch({selection:n})}}}}function Wt(t){return R.ViewPlugin.define((e)=>new ce(t,e),{decorations:(e)=>e.decorations})}var l=require("obsidian");class z extends l.PluginSettingTab{icon="type-outline";tm;constructor(t,e){super(t,e.plugin);this.tm=e}registerFeaturesInGroup(t,e){for(let i of Object.values(e))i.registerSetting(t)}featureDefs(t,e){return Object.values(t).map((i)=>i.getDefinition(e))}getSettingDefinitions(){let t=()=>this.refreshDomState();return[...this.featureDefs(this.tm.features.general,t),{type:"group",heading:"Typewriter",items:[{name:'Not available if "keep lines above and below" is activated',visible:()=>this.tm.settings.keepLinesAboveAndBelow.isKeepLinesAboveAndBelowEnabled},...this.featureDefs(this.tm.features.typewriter,t)]},{type:"group",heading:"Keep lines above and below",items:[{name:"Not available if typewriter scrolling is activated",visible:()=>this.tm.settings.typewriter.isTypewriterScrollEnabled},...this.featureDefs(this.tm.features.keepAboveAndBelow,t)]},{type:"group",heading:"Highlight current line",items:this.featureDefs(this.tm.features.currentLine,t)},{type:"group",heading:"Limit line width",items:this.featureDefs(this.tm.features.maxChar,t)},{type:"group",heading:"Dimming",items:this.featureDefs(this.tm.features.dimming,t)},{type:"group",heading:"Writing focus",items:this.featureDefs(this.tm.features.writingFocus,t)},{type:"group",heading:"Hemingway mode",items:this.featureDefs(this.tm.features.hemingwayMode,t)},{type:"group",heading:"Restore cursor position",items:this.featureDefs(this.tm.features.restoreCursorPosition,t)},{type:"group",heading:"Update notice and funding",items:[...this.featureDefs(this.tm.features.updates,t),{name:"",render:(e)=>{e.settingEl.empty();let i=e.settingEl.createDiv(),n=new l.Component;n.load(),l.MarkdownRenderer.render(this.app,E,i,this.app.vault.getRoot().path,n).catch((o)=>{})}}]}]}display(){this.containerEl.empty();let t=new l.SettingGroup(this.containerEl);this.registerFeaturesInGroup(t,this.tm.features.general);let e=new l.SettingGroup(this.containerEl).setHeading("Typewriter");if(this.tm.settings.keepLinesAboveAndBelow.isKeepLinesAboveAndBelowEnabled)e.addSetting((u)=>{u.setName('Not available if "keep lines above and below" is activated')});this.registerFeaturesInGroup(e,this.tm.features.typewriter);let i=new l.SettingGroup(this.containerEl).setHeading("Keep lines above and below");if(this.tm.settings.typewriter.isTypewriterScrollEnabled)i.addSetting((u)=>{u.setName("Not available if typewriter scrolling is activated")});this.registerFeaturesInGroup(i,this.tm.features.keepAboveAndBelow);let n=new l.SettingGroup(this.containerEl).setHeading("Highlight current line");this.registerFeaturesInGroup(n,this.tm.features.currentLine);let o=new l.SettingGroup(this.containerEl).setHeading("Limit line width");this.registerFeaturesInGroup(o,this.tm.features.maxChar);let s=new l.SettingGroup(this.containerEl).setHeading("Dimming");this.registerFeaturesInGroup(s,this.tm.features.dimming);let d=new l.SettingGroup(this.containerEl).setHeading("Writing focus");this.registerFeaturesInGroup(d,this.tm.features.writingFocus);let m=new l.SettingGroup(this.containerEl).setHeading("Hemingway mode");this.registerFeaturesInGroup(m,this.tm.features.hemingwayMode);let y=new l.SettingGroup(this.containerEl).setHeading("Restore cursor position");this.registerFeaturesInGroup(y,this.tm.features.restoreCursorPosition);let C=new l.SettingGroup(this.containerEl).setHeading("Update notice and funding");this.registerFeaturesInGroup(C,this.tm.features.updates);let h=this.containerEl.createDiv();this.containerEl.appendChild(h);let g=new l.Component;g.load(),l.MarkdownRenderer.render(this.app,E,h,this.app.vault.getRoot().path,g).catch((u)=>{})}}class v{tm;constructor(t){this.tm=t}load(){}}class O extends v{}function be(t,e){let i=e==="up"?"goUp":"goDown";t.plugin.addCommand({id:`move-typewriter-${e}`,name:`Move typewriter ${e}`,editorCallback:(n,o)=>{n.exec(i),window.dispatchEvent(new Event("moveByCommand"))}})}class Xt extends O{commandKey="move-typewriter-up";commandTitle="Move typewriter up";registerCommand(){be(this.tm,"up")}}class jt extends O{commandKey="move-typewriter-down";commandTitle="Move typewriter down";registerCommand(){be(this.tm,"down")}}class qt extends O{registerCommand(){this.tm.plugin.addCommand({id:this.commandKey,name:this.commandTitle,callback:this.onCommand.bind(this)})}load(){this.registerCommand()}}class c extends qt{registerCommand(){this.tm.plugin.addCommand({id:`${this.commandKey}-toggle`,name:`Toggle ${this.commandTitle}`,callback:this.onCommand.bind(this)}),this.tm.plugin.addCommand({id:`${this.commandKey}-enable`,name:`Enable ${this.commandTitle}`,callback:this.onEnable.bind(this)}),this.tm.plugin.addCommand({id:`${this.commandKey}-disable`,name:`Disable ${this.commandTitle}`,callback:this.onDisable.bind(this)})}onCommand(){this.featureToggle?.toggle()}onEnable(){this.featureToggle?.toggle(!0)}onDisable(){this.featureToggle?.toggle(!1)}}class At extends c{commandKey="dimming";commandTitle="dimming";featureToggle=this.tm.features.dimming["dimming.isDimUnfocusedEnabled"]}class Jt extends c{commandKey="hemingway-mode";commandTitle="Hemingway mode";featureToggle=this.tm.features.hemingwayMode["hemingwayMode.isHemingwayModeEnabled"]}class Qt extends c{commandKey="max-chars-per-line";commandTitle="limit maximum characters per line";featureToggle=this.tm.features.maxChar["maxChars.isMaxCharsPerLineEnabled"]}class Zt extends c{commandKey="typewriter-mode-plugin";commandTitle="typewriter mode plugin";featureToggle=this.tm.features.general["general.isPluginActivated"]}class Ft extends c{commandKey="typewriter";commandTitle="typewriter scrolling";featureToggle=this.tm.features.typewriter["typewriter.isTypewriterScrollEnabled"]}class It extends c{featureToggle=null;commandKey="typewriter-scrolling-and-paragraph-dimming";commandTitle="typewriter scrolling and paragraph dimming";onCommand(){let t=this.tm.features.typewriter["typewriter.isTypewriterScrollEnabled"],e=this.tm.features.dimming["dimming.isDimUnfocusedEnabled"],i=t.getSettingValue()&&e.getSettingValue();t.toggle(!i),e.toggle(!i)}onEnable(){this.tm.features.typewriter["typewriter.isTypewriterScrollEnabled"].toggle(!0),this.tm.features.dimming["dimming.isDimUnfocusedEnabled"].toggle(!0)}onDisable(){this.tm.features.typewriter["typewriter.isTypewriterScrollEnabled"].toggle(!1),this.tm.features.dimming["dimming.isDimUnfocusedEnabled"].toggle(!1)}}var L=require("obsidian");class _t{tm;constructor(t){this.tm=t}focusModeActive=!1;maximizedClass="ptm-maximized";focusModeClass="ptm-focus-mode";vignetteElClass="ptm-writing-focus-vignette-element";vignetteStyleAttr="data-ptm-writing-focus-vignette-style";leftSplitCollapsed=!1;rightSplitCollapsed=!1;prevWasFullscreen=!1;addVignette(t){let e=this.tm.settings.writingFocus.doesWritingFocusShowHeader?t.containerEl:t.contentEl;e.classList.add(this.vignetteElClass),e.setAttr(this.vignetteStyleAttr,this.tm.settings.writingFocus.writingFocusVignetteStyle)}removeVignette(t){let e=this.tm.settings.writingFocus.doesWritingFocusShowHeader?t.containerEl:t.contentEl;e.removeAttribute(this.vignetteStyleAttr),e.classList.remove(this.vignetteElClass)}startFullscreen(t){if(L.Platform.isMobile)return;let e=window.electron.remote.getCurrentWindow();this.prevWasFullscreen=e.isFullScreen(),e.setFullScreen(!0);let i=()=>{this.onExitFullscreenWritingFocus(t),e.off("leave-full-screen",i)};e.on("leave-full-screen",i)}exitFullscreen(){if(L.Platform.isMobile)return;if(this.prevWasFullscreen)return;window.electron.remote.getCurrentWindow().setFullScreen(!1)}onExitFullscreenWritingFocus(t){if(this.focusModeActive)this.disableFocusModeForView(t)}storeSplitsValues(){this.leftSplitCollapsed=this.tm.plugin.app.workspace.leftSplit.collapsed,this.rightSplitCollapsed=this.tm.plugin.app.workspace.rightSplit.collapsed}collapseSplits(){this.tm.plugin.app.workspace.leftSplit.collapse(),this.tm.plugin.app.workspace.rightSplit.collapse()}restoreSplits(){if(!this.leftSplitCollapsed)this.tm.plugin.app.workspace.leftSplit.expand();if(!this.rightSplitCollapsed)this.tm.plugin.app.workspace.rightSplit.expand()}removeExtraneousClasses(){if(this.tm.plugin.app.workspace.containerEl.hasClass(this.maximizedClass))this.tm.plugin.app.workspace.containerEl.removeClass(this.maximizedClass);if(activeDocument.body.classList.contains(this.focusModeClass))activeDocument.body.classList.remove(this.focusModeClass)}enableFocusModeForView(t){if(this.focusModeActive=!0,!activeDocument.body.classList.contains(this.focusModeClass))this.storeSplitsValues();if(this.collapseSplits(),this.tm.plugin.app.workspace.containerEl.toggleClass(this.maximizedClass,!this.tm.plugin.app.workspace.containerEl.hasClass(this.maximizedClass)),activeDocument.body.classList.toggle(this.focusModeClass,!activeDocument.body.classList.contains(this.focusModeClass)),activeDocument.body.classList.contains(this.focusModeClass))Array.from(activeDocument.querySelectorAll(`.${this.focusModeClass} .workspace-split`)).forEach((e)=>{let i=e,n=i.querySelector(".mod-active");i.toggleClass("ptm-wf-split-hidden",!n)});if(this.tm.settings.writingFocus.doesWritingFocusShowVignette)this.addVignette(t);if(this.tm.settings.writingFocus.isWritingFocusFullscreen)this.startFullscreen(t)}disableFocusModeForView(t){if(this.removeExtraneousClasses(),activeDocument.body.classList.contains(this.focusModeClass))activeDocument.body.classList.remove(this.focusModeClass);if(this.restoreSplits(),Array.from(activeDocument.querySelectorAll(".workspace-split")).forEach((e)=>{e.removeClass("ptm-wf-split-hidden")}),this.tm.settings.writingFocus.doesWritingFocusShowVignette)this.removeVignette(t);if(this.tm.settings.writingFocus.isWritingFocusFullscreen)this.exitFullscreen();this.focusModeActive=!1}enableFocusMode(){let t=this.tm.plugin.app.workspace.getActiveViewOfType(L.ItemView);if(!t||t?.getViewType()==="empty")return;this.enableFocusModeForView(t)}disableFocusMode(){let t=this.tm.plugin.app.workspace.getActiveViewOfType(L.ItemView);if(!t||t?.getViewType()==="empty")return;this.disableFocusModeForView(t)}toggleFocusMode(){if(this.focusModeActive)this.disableFocusMode();else this.enableFocusMode()}}class Nt extends c{featureToggle=null;commandKey="writing-focus";commandTitle="writing focus";writingFocus=new _t(this.tm);onCommand(){this.writingFocus.toggleFocusMode()}onEnable(){this.writingFocus.enableFocusMode()}onDisable(){this.writingFocus.disableFocusMode()}onload(){this.tm.plugin.addRibbonIcon("enter","Toggle Writing Focus",(t)=>{this.writingFocus.toggleFocusMode()})}}function Ce(t){return Object.fromEntries([new Zt(t),new Ft(t),new At(t),new It(t),new Xt(t),new jt(t),new Nt(t),new Jt(t),new Qt(t)].map((e)=>[e.commandKey,e]))}var x={NONE:"dim-none",DIM:"dim",ALL:"dim-all"},M={PARAGRAPHS:"paragraphs",SENTENCES:"sentences"},D={BOX:"box",UNDERLINE:"underline"},w={BOX:"box",COLUMN:"column"},b={BOTH:"both",DESKTOP:"desktop",MOBILE:"mobile",TABLET:"tablet",PHONE:"phone",DESKTOP_AND_TABLET:"desktop-and-tablet"};function Se(t,e){let i=e.indexOf("."),n=e.slice(0,i),o=e.slice(i+1);return t[n][o]}function U(t,e,i){let n=e.indexOf("."),o=e.slice(0,n),s=e.slice(n+1);t[o][s]=i}var a={general:{version:null,isAnnounceUpdatesEnabled:!0,isPluginActivated:!0,isOnlyActivateAfterFirstInteractionEnabled:!1,enabledPlatforms:b.BOTH,enabledFilePaths:[],disabledFilePaths:[]},typewriter:{isTypewriterScrollEnabled:!0,isOnlyMaintainTypewriterOffsetWhenReachedEnabled:!1,isTypewriterOnlyUseCommandsEnabled:!1,typewriterOffset:0.5},keepLinesAboveAndBelow:{isKeepLinesAboveAndBelowEnabled:!1,linesAboveAndBelow:5},maxChars:{isMaxCharsPerLineEnabled:!1,maxCharsPerLine:64},dimming:{isDimUnfocusedEnabled:!1,isDimUnfocusedOnlyInWritingFocusModeEnabled:!1,isDimHighlightListParentEnabled:!1,isDimTableAsOneEnabled:!0,dimUnfocusedMode:M.PARAGRAPHS,dimUnfocusedEditorsBehavior:x.DIM,dimmedOpacity:0.25,isPauseDimUnfocusedWhileScrollingEnabled:!0,isPauseDimUnfocusedWhileSelectingEnabled:!0},currentLine:{isHighlightCurrentLineEnabled:!0,isHighlightCurrentLineOnlyInWritingFocusModeEnabled:!1,isFadeLinesEnabled:!1,isFadeLinesOnlyInWritingFocusModeEnabled:!1,fadeLinesIntensity:0.5,isHighlightCurrentLineOnlyInFocusedEditorEnabled:!1,isPauseCurrentLineHighlightWhileScrollingEnabled:!1,isPauseCurrentLineHighlightWhileSelectingEnabled:!1,currentLineHighlightStyle:D.BOX,currentLineHighlightUnderlineThickness:1,"currentLineHighlightColor-dark":"#444444","currentLineHighlightColor-light":"#dddddd"},writingFocus:{doesWritingFocusShowHeader:!1,doesWritingFocusShowStatusBar:!1,doesWritingFocusShowVignette:!0,isWritingFocusFullscreen:!0,writingFocusVignetteStyle:w.BOX,writingFocusFontSize:0},restoreCursorPosition:{isRestoreCursorPositionEnabled:!1,cursorPositions:{}},hemingwayMode:{isHemingwayModeEnabled:!1,isHemingwayModeOnlyInWritingFocusModeEnabled:!1,isAllowBackspaceInHemingwayModeEnabled:!1,isShowHemingwayModeStatusBarEnabled:!0,hemingwayModeStatusBarText:"Hemingway"}};function Je(t){return{general:{version:t.version??a.general.version,isAnnounceUpdatesEnabled:t.isAnnounceUpdatesEnabled??a.general.isAnnounceUpdatesEnabled,isPluginActivated:t.isPluginActivated??a.general.isPluginActivated,isOnlyActivateAfterFirstInteractionEnabled:t.isOnlyActivateAfterFirstInteractionEnabled??a.general.isOnlyActivateAfterFirstInteractionEnabled,enabledPlatforms:a.general.enabledPlatforms,enabledFilePaths:a.general.enabledFilePaths,disabledFilePaths:a.general.disabledFilePaths},typewriter:{isTypewriterScrollEnabled:t.isTypewriterScrollEnabled??a.typewriter.isTypewriterScrollEnabled,isOnlyMaintainTypewriterOffsetWhenReachedEnabled:t.isOnlyMaintainTypewriterOffsetWhenReachedEnabled??a.typewriter.isOnlyMaintainTypewriterOffsetWhenReachedEnabled,isTypewriterOnlyUseCommandsEnabled:t.isTypewriterOnlyUseCommandsEnabled??a.typewriter.isTypewriterOnlyUseCommandsEnabled,typewriterOffset:t.typewriterOffset??a.typewriter.typewriterOffset},keepLinesAboveAndBelow:{isKeepLinesAboveAndBelowEnabled:t.isKeepLinesAboveAndBelowEnabled??a.keepLinesAboveAndBelow.isKeepLinesAboveAndBelowEnabled,linesAboveAndBelow:t.linesAboveAndBelow??a.keepLinesAboveAndBelow.linesAboveAndBelow},maxChars:{isMaxCharsPerLineEnabled:t.isMaxCharsPerLineEnabled??a.maxChars.isMaxCharsPerLineEnabled,maxCharsPerLine:t.maxCharsPerLine??a.maxChars.maxCharsPerLine},dimming:{isDimUnfocusedEnabled:t.isDimUnfocusedEnabled??a.dimming.isDimUnfocusedEnabled,isDimUnfocusedOnlyInWritingFocusModeEnabled:a.dimming.isDimUnfocusedOnlyInWritingFocusModeEnabled,isDimHighlightListParentEnabled:t.isDimHighlightListParentEnabled??a.dimming.isDimHighlightListParentEnabled,isDimTableAsOneEnabled:t.isDimTableAsOneEnabled??a.dimming.isDimTableAsOneEnabled,dimUnfocusedMode:t.dimUnfocusedMode??a.dimming.dimUnfocusedMode,dimUnfocusedEditorsBehavior:t.dimUnfocusedEditorsBehavior??a.dimming.dimUnfocusedEditorsBehavior,dimmedOpacity:t.dimmedOpacity??a.dimming.dimmedOpacity,isPauseDimUnfocusedWhileScrollingEnabled:t.isPauseDimUnfocusedWhileScrollingEnabled??a.dimming.isPauseDimUnfocusedWhileScrollingEnabled,isPauseDimUnfocusedWhileSelectingEnabled:t.isPauseDimUnfocusedWhileSelectingEnabled??a.dimming.isPauseDimUnfocusedWhileSelectingEnabled},currentLine:{isHighlightCurrentLineEnabled:t.isHighlightCurrentLineEnabled??a.currentLine.isHighlightCurrentLineEnabled,isHighlightCurrentLineOnlyInWritingFocusModeEnabled:a.currentLine.isHighlightCurrentLineOnlyInWritingFocusModeEnabled,isFadeLinesEnabled:t.isFadeLinesEnabled??a.currentLine.isFadeLinesEnabled,isFadeLinesOnlyInWritingFocusModeEnabled:a.currentLine.isFadeLinesOnlyInWritingFocusModeEnabled,fadeLinesIntensity:t.fadeLinesIntensity??a.currentLine.fadeLinesIntensity,isHighlightCurrentLineOnlyInFocusedEditorEnabled:t.isHighlightCurrentLineOnlyInFocusedEditorEnabled??a.currentLine.isHighlightCurrentLineOnlyInFocusedEditorEnabled,isPauseCurrentLineHighlightWhileScrollingEnabled:a.currentLine.isPauseCurrentLineHighlightWhileScrollingEnabled,isPauseCurrentLineHighlightWhileSelectingEnabled:a.currentLine.isPauseCurrentLineHighlightWhileSelectingEnabled,currentLineHighlightStyle:t.currentLineHighlightStyle??a.currentLine.currentLineHighlightStyle,currentLineHighlightUnderlineThickness:t.currentLineHighlightUnderlineThickness??a.currentLine.currentLineHighlightUnderlineThickness,"currentLineHighlightColor-dark":t["currentLineHighlightColor-dark"]??a.currentLine["currentLineHighlightColor-dark"],"currentLineHighlightColor-light":t["currentLineHighlightColor-light"]??a.currentLine["currentLineHighlightColor-light"]},writingFocus:{doesWritingFocusShowHeader:t.doesWritingFocusShowHeader??a.writingFocus.doesWritingFocusShowHeader,doesWritingFocusShowVignette:t.doesWritingFocusShowVignette??a.writingFocus.doesWritingFocusShowVignette,doesWritingFocusShowStatusBar:t.doesWritingFocusShowStatusBar??a.writingFocus.doesWritingFocusShowStatusBar,isWritingFocusFullscreen:t.isWritingFocusFullscreen??a.writingFocus.isWritingFocusFullscreen,writingFocusVignetteStyle:t.writingFocusVignetteStyle??a.writingFocus.writingFocusVignetteStyle,writingFocusFontSize:t.writingFocusFontSize??a.writingFocus.writingFocusFontSize},restoreCursorPosition:{isRestoreCursorPositionEnabled:t.isRestoreCursorPositionEnabled??a.restoreCursorPosition.isRestoreCursorPositionEnabled,cursorPositions:{}},hemingwayMode:{isHemingwayModeEnabled:t.isHemingwayModeEnabled??a.hemingwayMode.isHemingwayModeEnabled,isHemingwayModeOnlyInWritingFocusModeEnabled:a.hemingwayMode.isHemingwayModeOnlyInWritingFocusModeEnabled,isAllowBackspaceInHemingwayModeEnabled:t.isAllowBackspaceInHemingwayModeEnabled??a.hemingwayMode.isAllowBackspaceInHemingwayModeEnabled,isShowHemingwayModeStatusBarEnabled:t.isShowHemingwayModeStatusBarEnabled??a.hemingwayMode.isShowHemingwayModeStatusBarEnabled,hemingwayModeStatusBarText:t.hemingwayModeStatusBarText??a.hemingwayMode.hemingwayModeStatusBarText}}}async function Qe(t,e,i){let n=`${i}/cursor-positions.json`;try{if(await e.adapter.exists(n)){let o=await e.adapter.read(n),s=JSON.parse(o);t.restoreCursorPosition.cursorPositions=s}}catch(o){}return t}async function fe(t,e,i){if(!("general"in t)){let o=Je(t);return await Qe(o,e,i)}return t}class p extends v{enable(){}disable(){}getBodyClasses(){return[]}getSettingKey(){return this.settingKey}getSettingValue(){return Se(this.tm.settings,this.settingKey)}setSettingValue(t){U(this.tm.settings,this.settingKey,t)}}var Ze=/rgba?\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*(?:,\s*([0-9.]+))?\s*\)/;class H extends p{settingKey;themeMode;constructor(t,e){super(t);this.themeMode=e,this.settingKey=`currentLine.currentLineHighlightColor-${e}`}registerSetting(t){let e=this.getSettingValue(),{color:i,opacity:n}=this.parseColor(e);t.addSetting((o)=>{o.setName(`Current line highlight color in ${this.themeMode} themes`).setDesc(`The color and opacity of the current line highlight in ${this.themeMode} themes`).setClass("typewriter-mode-setting").addColorPicker((s)=>s.setValue(i).onChange((d)=>{let m=this.parseColor(this.getSettingValue()).opacity;this.changeCurrentLineHighlightColor(d,m)})).addSlider((s)=>s.setLimits(0,1,0.01).setValue(n).setDynamicTooltip().onChange((d)=>{let m=this.parseColor(this.getSettingValue()).color;this.changeCurrentLineHighlightColor(m,d)}))})}getDefinition(t){let e=this.getSettingValue(),{color:i,opacity:n}=this.parseColor(e);return{name:`Current line highlight color in ${this.themeMode} themes`,desc:`The color and opacity of the current line highlight in ${this.themeMode} themes`,render:(o)=>{o.setClass("typewriter-mode-setting").addColorPicker((s)=>s.setValue(i).onChange((d)=>{let m=this.parseColor(this.getSettingValue()).opacity;this.changeCurrentLineHighlightColor(d,m),t?.()})).addSlider((s)=>s.setLimits(0,1,0.01).setValue(n).setDynamicTooltip().onChange((d)=>{let m=this.parseColor(this.getSettingValue()).color;this.changeCurrentLineHighlightColor(m,d),t?.()}))}}}load(){this.tm.setCSSVariable(`--current-line-highlight-color-${this.themeMode}`,`${this.getSettingValue()}`)}parseColor(t){let e=t.match(Ze);if(e){let i=Number.parseInt(e[1],10),n=Number.parseInt(e[2],10),o=Number.parseInt(e[3],10),s=e[4]?Number.parseFloat(e[4]):1;return{color:`#${(16777216+(i<<16)+(n<<8)+o).toString(16).slice(1)}`,opacity:s}}if(t.startsWith("#")){if(t.length===4){let i=t[1],n=t[2],o=t[3];return{color:`#${i}${i}${n}${n}${o}${o}`,opacity:1}}return{color:t,opacity:1}}return{color:"#000000",opacity:1}}changeCurrentLineHighlightColor(t,e){let i=t.replace("#",""),n=Number.parseInt(i.slice(0,2),16),o=Number.parseInt(i.slice(2,4),16),s=Number.parseInt(i.slice(4,6),16),d=`rgba(${n}, ${o}, ${s}, ${e})`;this.setSettingValue(d),this.tm.setCSSVariable(`--current-line-highlight-color-${this.themeMode}`,`${d}`),this.tm.saveSettings().catch((m)=>{})}}class Y extends H{constructor(t){super(t,"dark")}}class W extends H{constructor(t){super(t,"light")}}class X extends p{settingKey="currentLine.currentLineHighlightStyle";getBodyClasses(){return["ptm-current-line-highlight-box","ptm-current-line-highlight-underline"]}registerSetting(t){t.addSetting((e)=>{e.setName("Current line highlight style").setDesc("The style of the current line highlight").setClass("typewriter-mode-setting").addDropdown((i)=>i.addOption(D.BOX,"Box").addOption(D.UNDERLINE,"Underline").setValue(this.getSettingValue()).onChange((n)=>{this.changeCurrentLineHighlightStyle(n)}))})}getDefinition(t){return{name:"Current line highlight style",desc:"The style of the current line highlight",render:(e)=>{e.setClass("typewriter-mode-setting").addDropdown((i)=>i.addOption(D.BOX,"Box").addOption(D.UNDERLINE,"Underline").setValue(this.getSettingValue()).onChange((n)=>{this.changeCurrentLineHighlightStyle(n),t?.()}))}}}load(){super.load(),this.applyClass()}applyClass(){let t=`ptm-current-line-highlight-${this.getSettingValue()}`;for(let e of this.getBodyClasses())this.tm.perWindowProps.bodyClasses.remove(e);this.tm.perWindowProps.bodyClasses.push(t)}changeCurrentLineHighlightStyle(t){this.setSettingValue(t),this.applyClass(),this.tm.saveSettings().catch((e)=>{})}}class j extends p{settingKey="currentLine.currentLineHighlightUnderlineThickness";registerSetting(t){t.addSetting((e)=>{e.setName("Current line underline thickness").setDesc("The thickness of the underline that highlights the current line").setClass("typewriter-mode-setting").addSlider((i)=>i.setLimits(1,5,1).setDynamicTooltip().setValue(this.getSettingValue()).onChange((n)=>{this.changeCurrentLineHighlightUnderlineThickness(n)}))})}getDefinition(t){return{name:"Current line underline thickness",desc:"The thickness of the underline that highlights the current line",render:(e)=>{e.setClass("typewriter-mode-setting").addSlider((i)=>i.setLimits(1,5,1).setDynamicTooltip().setValue(this.getSettingValue()).onChange((n)=>{this.changeCurrentLineHighlightUnderlineThickness(n),t?.()}))}}}load(){this.tm.setCSSVariable("--current-line-highlight-underline-thickness",`${this.getSettingValue()}px`)}changeCurrentLineHighlightUnderlineThickness(t){this.setSettingValue(t),this.tm.setCSSVariable("--current-line-highlight-underline-thickness",`${t}px`),this.tm.saveSettings().catch((e)=>{})}}class r extends p{toggleClass=null;isToggleClassPersistent=!1;getBodyClasses(){if(this.toggleClass)return[this.toggleClass];return[]}isSettingEnabled(){return!0}getToggleClass(){return this.toggleClass}registerSetting(t){t.addSetting((e)=>{e.setName(this.settingTitle).setDesc(this.settingDesc).setClass("typewriter-mode-setting").addToggle((i)=>i.setValue(this.getSettingValue()).onChange((n)=>{this.toggle(n)})).setDisabled(!this.isSettingEnabled())})}getDefinition(t){return{name:this.settingTitle,desc:this.settingDesc,render:(e)=>{e.setClass("typewriter-mode-setting").addToggle((i)=>i.setValue(this.getSettingValue()).onChange((n)=>{this.toggle(n),t?.()})).setDisabled(!this.isSettingEnabled())}}}load(){if(this.getSettingValue())this.enable();else this.disable()}toggle(t=null){let e=t;if(e===null)e=!this.getSettingValue();if(this.setSettingValue(e),e)this.enable();else this.disable();this.tm.saveSettings().catch((i)=>{})}enable(){if(this.toggleClass){let t=this.isToggleClassPersistent?"persistentBodyClasses":"bodyClasses";if(!this.tm.perWindowProps[t].contains(this.toggleClass))this.tm.perWindowProps[t].push(this.toggleClass)}}disable(){if(this.toggleClass){let t=this.isToggleClassPersistent?"persistentBodyClasses":"bodyClasses";this.tm.perWindowProps[t].remove(this.toggleClass)}}}class q extends r{settingKey="currentLine.isFadeLinesEnabled";toggleClass="ptm-fade-lines";settingTitle="Fade lines";settingDesc="This places a gradient on the lines above and below the current line, making the text fade out more and more towards the top and bottom of the editor."}class A extends p{settingKey="currentLine.fadeLinesIntensity";registerSetting(t){t.addSetting((e)=>{e.setName("Intensity of the fade lines gradient").setDesc("How soon lines shall be faded out").setClass("typewriter-mode-setting").addSlider((i)=>i.setLimits(0,100,5).setDynamicTooltip().setValue(this.getSettingValue()*100).onChange((n)=>{this.changeFadeLinesIntensity(n/100)}))})}getDefinition(t){return{name:"Intensity of the fade lines gradient",desc:"How soon lines shall be faded out",render:(e)=>{e.setClass("typewriter-mode-setting").addSlider((i)=>i.setLimits(0,100,5).setDynamicTooltip().setValue(this.getSettingValue()*100).onChange((n)=>{this.changeFadeLinesIntensity(n/100),t?.()}))}}}load(){this.tm.setCSSVariable("--ptm-fade-lines-intensity",`${this.getSettingValue()*100}%`)}changeFadeLinesIntensity(t=0.5){this.setSettingValue(t),this.tm.setCSSVariable("--ptm-fade-lines-intensity",`${t*100}%`),this.tm.saveSettings().catch((e)=>{})}}class J extends r{settingKey="currentLine.isFadeLinesOnlyInWritingFocusModeEnabled";toggleClass="ptm-fade-lines-only-in-writing-focus-mode";hasCommand=!1;settingTitle="Fade lines only in writing focus mode";settingDesc="Only show the fade lines effect when writing focus mode is active"}class Q extends r{settingKey="currentLine.isHighlightCurrentLineEnabled";toggleClass="ptm-highlight-current-line";settingTitle="Highlight current line";settingDesc="Highlights the line that the cursor is currently on"}class Z extends r{settingKey="currentLine.isHighlightCurrentLineOnlyInFocusedEditorEnabled";toggleClass="ptm-highlight-current-line-only-in-active-editor";hasCommand=!1;settingTitle="Highlight current line only in focused note";settingDesc="Only show highlighted line in the note your cursor is on (e.g. if you have multiple notes open in split panes)"}class F extends r{settingKey="currentLine.isHighlightCurrentLineOnlyInWritingFocusModeEnabled";toggleClass="ptm-highlight-current-line-only-in-writing-focus-mode";hasCommand=!1;settingTitle="Highlight current line only in writing focus mode";settingDesc="Only show the highlighted line when writing focus mode is active"}class I extends r{settingKey="currentLine.isPauseCurrentLineHighlightWhileScrollingEnabled";toggleClass="ptm-current-line-pause-while-scrolling";settingTitle="Pause current line highlight while scrolling";settingDesc="If enabled, the current line highlight is hidden while scrolling"}class _ extends r{settingKey="currentLine.isPauseCurrentLineHighlightWhileSelectingEnabled";toggleClass="ptm-current-line-pause-while-selecting";settingTitle="Pause current line highlight while selecting text";settingDesc="If enabled, the current line highlight is hidden while selecting text"}function Gt(t){return Object.fromEntries([new Q(t),new F(t),new q(t),new A(t),new J(t),new W(t),new Y(t),new X(t),new j(t),new Z(t),new I(t),new _(t)].map((e)=>[e.getSettingKey(),e]))}class N extends r{settingKey="dimming.isDimHighlightListParentEnabled";toggleClass="ptm-dim-highlight-list-parent";settingTitle="Highlight list parents";settingDesc="If this is enabled, the parent items of the active list item are not dimmed"}class G extends r{settingKey="dimming.isDimTableAsOneEnabled";toggleClass="ptm-dim-table-as-one";settingTitle="Undim all table cells when editing";settingDesc="If this is enabled, all table cells are shown/not dimmed when you edit a table. If this is disabled, only the current table cell that you are editing is shown, while the other cells remain dimmed."}class tt extends r{settingKey="dimming.isDimUnfocusedEnabled";toggleClass="ptm-dim-unfocused";settingTitle="Dim unfocused";settingDesc="Dim unfocused paragraphs / sentences"}class et extends p{settingKey="dimming.dimUnfocusedEditorsBehavior";registerSetting(t){t.addSetting((e)=>{e.setName("Dimming behavior in unfocused notes").setDesc("How to dim paragraphs / sentences in notes / editors that your cursor is not on (e.g. if you have multiple notes open in split panes)").setClass("typewriter-mode-setting").addDropdown((i)=>i.addOption(x.NONE,"Do not dim anything").addOption(x.DIM,"Dim all but the previously focused paragraph / sentence").addOption(x.ALL,"Dim everything").setValue(this.getSettingValue()).onChange((n)=>{this.changeDimUnfocusedEditorsBehavior(n)}))})}getDefinition(t){return{name:"Dimming behavior in unfocused notes",desc:"How to dim paragraphs / sentences in notes / editors that your cursor is not on (e.g. if you have multiple notes open in split panes)",render:(e)=>{e.setClass("typewriter-mode-setting").addDropdown((i)=>i.addOption(x.NONE,"Do not dim anything").addOption(x.DIM,"Dim all but the previously focused paragraph / sentence").addOption(x.ALL,"Dim everything").setValue(this.getSettingValue()).onChange((n)=>{this.changeDimUnfocusedEditorsBehavior(n),t?.()}))}}}load(){super.load(),this.tm.perWindowProps.bodyAttrs["data-ptm-dim-unfocused-editors-behavior"]=this.getSettingValue()}changeDimUnfocusedEditorsBehavior(t){this.setSettingValue(t),this.tm.perWindowProps.bodyAttrs["data-ptm-dim-unfocused-editors-behavior"]=t,this.tm.saveSettings().catch((e)=>{})}}class it extends p{settingKey="dimming.dimUnfocusedMode";registerSetting(t){t.addSetting((e)=>{e.setName("Dim unfocused mode").setDesc("Choose to dim unfocused paragraphs or sentences").setClass("typewriter-mode-setting").addDropdown((i)=>i.addOption(M.PARAGRAPHS,"Paragraphs").addOption(M.SENTENCES,"Sentences").setValue(this.getSettingValue()).onChange((n)=>{this.change(n)}))})}getDefinition(t){return{name:"Dim unfocused mode",desc:"Choose to dim unfocused paragraphs or sentences",render:(e)=>{e.setClass("typewriter-mode-setting").addDropdown((i)=>i.addOption(M.PARAGRAPHS,"Paragraphs").addOption(M.SENTENCES,"Sentences").setValue(this.getSettingValue()).onChange((n)=>{this.change(n),t?.()}))}}}load(){super.load(),this.tm.perWindowProps.bodyAttrs["data-ptm-dim-unfocused-mode"]=this.getSettingValue()}change(t){this.setSettingValue(t),this.tm.perWindowProps.bodyAttrs["data-ptm-dim-unfocused-mode"]=t,this.tm.saveSettings().catch((e)=>{})}}class nt extends r{settingKey="dimming.isDimUnfocusedOnlyInWritingFocusModeEnabled";toggleClass="ptm-dim-unfocused-only-in-writing-focus-mode";hasCommand=!1;settingTitle="Dim unfocused only in writing focus mode";settingDesc="Only dim unfocused paragraphs / sentences when writing focus mode is active"}class ot extends p{settingKey="dimming.dimmedOpacity";registerSetting(t){t.addSetting((e)=>{e.setName("Opacity of dimmed elements").setDesc("The opacity of dimmed elements").setClass("typewriter-mode-setting").addSlider((i)=>i.setLimits(0,100,5).setDynamicTooltip().setValue(this.getSettingValue()*100).onChange((n)=>{this.changeDimmedOpacity(n/100)}))})}getDefinition(t){return{name:"Opacity of dimmed elements",desc:"The opacity of dimmed elements",render:(e)=>{e.setClass("typewriter-mode-setting").addSlider((i)=>i.setLimits(0,100,5).setDynamicTooltip().setValue(this.getSettingValue()*100).onChange((n)=>{this.changeDimmedOpacity(n/100),t?.()}))}}}load(){this.tm.setCSSVariable("--dimmed-opacity",`${this.getSettingValue()}`)}changeDimmedOpacity(t=0.25){this.setSettingValue(t),this.tm.setCSSVariable("--dimmed-opacity",`${t}`),this.tm.saveSettings().catch((e)=>{})}}class st extends r{settingKey="dimming.isPauseDimUnfocusedWhileScrollingEnabled";toggleClass="ptm-dim-unfocused-pause-while-scrolling";settingTitle="Pause dimming while scrolling";settingDesc="If this is enabled, paragraphs / sentences are not dimmed while scrolling"}class rt extends r{settingKey="dimming.isPauseDimUnfocusedWhileSelectingEnabled";toggleClass="ptm-dim-unfocused-pause-while-selecting";settingTitle="Pause dimming while selecting text";settingDesc="If this is enabled, paragraphs / sentences are not dimmed while selecting text"}function te(t){return Object.fromEntries([new tt(t),new nt(t),new it(t),new N(t),new G(t),new ot(t),new st(t),new rt(t),new et(t)].map((e)=>[e.getSettingKey(),e]))}var K=require("obsidian");function Fe(t){let e=new Set;for(let n of t.vault.getFiles())e.add(n.path);function i(n){if(n.path)e.add(n.path);for(let o of n.children)if(o instanceof K.TFolder)i(o)}return i(t.vault.getRoot()),[...e].sort()}class xe extends K.AbstractInputSuggest{vaultPaths;constructor(t,e,i){super(t,e);this.vaultPaths=i}getSuggestions(t){let e=t.toLowerCase();return this.vaultPaths.filter((i)=>i.toLowerCase().includes(e)).slice(0,20)}renderSuggestion(t,e){e.setText(t)}}class Ve extends K.Modal{vaultPaths;getEnabledPaths;setEnabledPaths;getDisabledPaths;setDisabledPaths;constructor(t,e,i,n,o,s){super(t);this.vaultPaths=e,this.getEnabledPaths=i,this.setEnabledPaths=n,this.getDisabledPaths=o,this.setDisabledPaths=s}onOpen(){let{contentEl:t,modalEl:e}=this;e.addClass("typewriter-mode-file-paths-modal"),this.setTitle("File paths");let i=t.createDiv({cls:"typewriter-mode-file-paths-columns"});this.renderSection(i,"Enabled paths","Only enable the plugin for these files or folders. If empty, the plugin is active in all files.",this.getEnabledPaths,this.setEnabledPaths),this.renderSection(i,"Disabled paths","Always disable the plugin for these files or folders, overriding the enabled paths.",this.getDisabledPaths,this.setDisabledPaths)}onClose(){this.contentEl.empty()}renderSection(t,e,i,n,o){let s=t.createDiv({cls:"typewriter-mode-file-paths-column"});s.createEl("h3",{text:e}),s.createEl("p",{text:i,cls:"setting-item-description"});let d=s.createEl("input",{type:"text",placeholder:"Type to search vault paths…",cls:"typewriter-mode-file-paths-input"}),m=s.createDiv({cls:"typewriter-mode-file-paths-list"}),y=()=>{m.empty();let h=n();if(h.length===0){m.createEl("p",{text:"No paths configured.",cls:"setting-item-description"});return}for(let[g,u]of h.entries()){let P=m.createDiv({cls:"typewriter-mode-file-paths-row"});P.createEl("code",{text:u,cls:"typewriter-mode-file-paths-row-name"}),P.createEl("button",{text:"Remove"}).addEventListener("click",()=>{let B=[...n()];B.splice(g,1),o(B),y()})}};y();let C=new xe(this.app,d,this.vaultPaths);C.onSelect((h)=>{let g=n();if(!g.includes(h))o([...g,h]),y();C.setValue("")})}}class dt extends p{settingKey="general.enabledFilePaths";getDefinition(t){return{name:"File paths",desc:"Configure which files or folders the plugin is enabled or disabled in.",render:(e)=>{e.setClass("typewriter-mode-setting").addButton((i)=>i.setButtonText("Configure").onClick(()=>{this.openModal(),t?.()}))}}}openModal(){let t=this.tm.plugin.app,e=Fe(t);new Ve(t,e,()=>this.tm.settings.general.enabledFilePaths??[],(d)=>{this.setSettingValue(d),this.tm.saveSettings().catch((m)=>{})},()=>this.tm.settings.general.disabledFilePaths??[],(d)=>{U(this.tm.settings,"general.disabledFilePaths",d),this.tm.saveSettings().catch((m)=>{})}).open()}registerSetting(t){t.addSetting((e)=>{e.setName("File paths").setDesc("Configure which files or folders the plugin is enabled or disabled in.").setClass("typewriter-mode-setting").addButton((i)=>i.setButtonText("Configure").onClick(()=>{this.openModal()}))})}}class at extends p{settingKey="general.enabledPlatforms";settingTitle="Enable on platforms";settingDesc="Select on which platforms Typewriter Mode should be active";getDefinition(t){return{name:this.settingTitle,desc:this.settingDesc,render:(e)=>{e.setClass("typewriter-mode-setting").addDropdown((i)=>i.addOption(b.BOTH,"All platforms").addOption(b.DESKTOP,"Desktop only").addOption(b.MOBILE,"Mobile only (tablet and phone)").addOption(b.TABLET,"Tablet only").addOption(b.PHONE,"Phone only").addOption(b.DESKTOP_AND_TABLET,"Desktop and tablet").setValue(this.getSettingValue()).onChange((n)=>{this.setSettingValue(n),this.tm.saveSettings().catch((o)=>{}),t?.()}))}}}registerSetting(t){t.addSetting((e)=>{e.setName(this.settingTitle).setDesc(this.settingDesc).setClass("typewriter-mode-setting").addDropdown((i)=>i.addOption(b.BOTH,"All platforms").addOption(b.DESKTOP,"Desktop only").addOption(b.MOBILE,"Mobile only (tablet and phone)").addOption(b.TABLET,"Tablet only").addOption(b.PHONE,"Phone only").addOption(b.DESKTOP_AND_TABLET,"Desktop and tablet").setValue(this.getSettingValue()).onChange((n)=>{this.setSettingValue(n),this.tm.saveSettings().catch((o)=>{})}))})}}class mt extends r{settingKey="general.isOnlyActivateAfterFirstInteractionEnabled";settingTitle="Only activate after first interaction";settingDesc="Activate the focused line highlight and paragraph dimming only after the first interaction with the editor"}class pt extends r{settingKey="general.isPluginActivated";toggleClass="ptm-plugin-activated";settingTitle="Activate Typewriter Mode";settingDesc="This enables or disables all the features below."}function ee(t){return Object.fromEntries([new pt(t),new at(t),new mt(t),new dt(t)].map((e)=>[e.getSettingKey(),e]))}class ht extends r{settingKey="hemingwayMode.isAllowBackspaceInHemingwayModeEnabled";toggleClass=null;settingTitle="Allow using Backspace key in Hemingway mode";settingDesc="Allows deleting text with Backspace when Hemingway mode is active. Useful for fixing typos while maintaining forward-only writing flow."}class gt extends r{settingKey="hemingwayMode.isHemingwayModeEnabled";toggleClass="ptm-hemingway-mode-enabled";settingTitle="Hemingway mode";settingDesc="Prevents editing previously written text. Blocks navigation keys (arrows, Home, End, Page Up/Down), Delete key, and undo operations to enforce forward-only writing.";statusBarItem=null;load(){super.load(),this.statusBarItem=this.tm.plugin.addStatusBarItem(),this.statusBarItem.addClass("ptm-hemingway-mode-status"),this.updateStatusBar(),this.registerFocusModeObserver()}enable(){super.enable(),this.registerKeyboardHandler(),this.updateStatusBar()}disable(){super.disable(),this.unregisterKeyboardHandler(),this.updateStatusBar()}updateStatusBar(){if(!this.statusBarItem)return;let t=this.getSettingValue(),e=this.tm.settings.hemingwayMode.isShowHemingwayModeStatusBarEnabled,i=this.tm.settings.hemingwayMode.hemingwayModeStatusBarText,n=this.tm.settings.hemingwayMode.isHemingwayModeOnlyInWritingFocusModeEnabled,o=activeDocument.body.hasClass("ptm-focus-mode");if(t&&e&&(!n||o))this.statusBarItem.setText(i),this.statusBarItem.show();else this.statusBarItem.hide()}registerFocusModeObserver(){let t=new MutationObserver(()=>{this.updateStatusBar()});t.observe(activeDocument.body,{attributes:!0,attributeFilter:["class"]}),this.tm.plugin.register(()=>t.disconnect())}updateStatusBarText(){this.updateStatusBar()}keyboardHandler=(t)=>{if(!this.getSettingValue())return;if(this.tm.settings.hemingwayMode.isHemingwayModeOnlyInWritingFocusModeEnabled&&!activeDocument.body.hasClass("ptm-focus-mode"))return;let i=["ArrowLeft","ArrowRight","ArrowUp","ArrowDown","Home","End","PageUp","PageDown","Delete"],n=t.key==="z"&&(t.ctrlKey||t.metaKey),o=t.key==="Backspace",s=this.tm.settings.hemingwayMode.isAllowBackspaceInHemingwayModeEnabled;if(i.includes(t.key)||n)t.preventDefault(),t.stopPropagation();if(o&&!s)t.preventDefault(),t.stopPropagation()};registerKeyboardHandler(){activeDocument.addEventListener("keydown",this.keyboardHandler,{capture:!0})}unregisterKeyboardHandler(){activeDocument.removeEventListener("keydown",this.keyboardHandler,{capture:!0})}}class yt extends r{settingKey="hemingwayMode.isHemingwayModeOnlyInWritingFocusModeEnabled";toggleClass=null;hasCommand=!1;settingTitle="Hemingway mode only in writing focus mode";settingDesc="Only enforce Hemingway mode when writing focus mode is active";enable(){super.enable(),this.updateHemingwayModeStatusBar()}disable(){super.disable(),this.updateHemingwayModeStatusBar()}updateHemingwayModeStatusBar(){this.tm.features.hemingwayMode["hemingwayMode.isHemingwayModeEnabled"].updateStatusBarText()}}class lt extends r{settingKey="hemingwayMode.isShowHemingwayModeStatusBarEnabled";toggleClass=null;settingTitle="Show status bar indicator";settingDesc="Shows an indicator in the status bar when Hemingway mode is active.";enable(){super.enable(),this.updateHemingwayModeStatusBar()}disable(){super.disable(),this.updateHemingwayModeStatusBar()}updateHemingwayModeStatusBar(){this.tm.features.hemingwayMode["hemingwayMode.isHemingwayModeEnabled"].updateStatusBarText()}}class ut extends p{settingKey="hemingwayMode.hemingwayModeStatusBarText";settingTitle="Status bar text";settingDesc="Text to display in the status bar when Hemingway mode is active.";getDefinition(t){return{name:this.settingTitle,desc:this.settingDesc,render:(e)=>{e.setClass("typewriter-mode-setting").addText((i)=>i.setValue(this.getSettingValue()).onChange((n)=>{this.setSettingValue(n),this.tm.saveSettings().catch((o)=>{}),this.updateHemingwayModeStatusBar(),t?.()}))}}}registerSetting(t){t.addSetting((e)=>{e.setName(this.settingTitle).setDesc(this.settingDesc).setClass("typewriter-mode-setting").addText((i)=>i.setValue(this.getSettingValue()).onChange((n)=>{this.setSettingValue(n),this.tm.saveSettings().catch((o)=>{}),this.updateHemingwayModeStatusBar()}))})}updateHemingwayModeStatusBar(){this.tm.features.hemingwayMode["hemingwayMode.isHemingwayModeEnabled"].updateStatusBarText()}}function ie(t){return Object.fromEntries([new gt(t),new yt(t),new ht(t),new lt(t),new ut(t)].map((e)=>[e.getSettingKey(),e]))}class ct extends r{settingKey="keepLinesAboveAndBelow.isKeepLinesAboveAndBelowEnabled";settingTitle="Keep lines above and below";settingDesc="When enabled, always keeps the specified amount of lines above and below the current line in view";isSettingEnabled(){return!this.tm.settings.typewriter.isTypewriterScrollEnabled}}class bt extends p{settingKey="keepLinesAboveAndBelow.linesAboveAndBelow";getDefinition(t){return{name:"Amount of lines above and below the current line",desc:"The amount of lines to always keep above and below the current line",render:(e)=>{e.setClass("typewriter-mode-setting").addText((i)=>i.setValue(this.getSettingValue().toString()).onChange((n)=>{this.changeAmountOfLinesAboveAndBelow(Number.parseInt(n,10)),t?.()}))}}}registerSetting(t){t.addSetting((e)=>{e.setName("Amount of lines above and below the current line").setDesc("The amount of lines to always keep above and below the current line").setClass("typewriter-mode-setting").addText((i)=>i.setValue(this.getSettingValue().toString()).onChange((n)=>{this.changeAmountOfLinesAboveAndBelow(Number.parseInt(n,10))}))})}changeAmountOfLinesAboveAndBelow(t){this.setSettingValue(t),this.tm.saveSettings().catch((e)=>{})}}function ne(t){return Object.fromEntries([new ct(t),new bt(t)].map((e)=>[e.getSettingKey(),e]))}class Ct extends r{settingKey="maxChars.isMaxCharsPerLineEnabled";toggleClass="ptm-max-chars-per-line";isToggleClassPersistent=!0;settingTitle="Limit maximum number of characters per line";settingDesc="Limits the maximum number of characters per line"}class St extends p{settingKey="maxChars.maxCharsPerLine";registerSetting(t){t.addSetting((e)=>{e.setName("Maximum number of characters per line").setDesc("The maximum number of characters per line").setClass("typewriter-mode-setting").addText((i)=>i.setValue(this.getSettingValue().toString()).onChange((n)=>{this.changeMaxCharsPerLine(Number.parseInt(n,10))}))})}getDefinition(t){return{name:"Maximum number of characters per line",desc:"The maximum number of characters per line",render:(e)=>{e.setClass("typewriter-mode-setting").addText((i)=>i.setValue(this.getSettingValue().toString()).onChange((n)=>{this.changeMaxCharsPerLine(Number.parseInt(n,10)),t?.()}))}}}load(){this.tm.setCSSVariable("--max-chars-per-line",`${this.getSettingValue()}ch`)}changeMaxCharsPerLine(t){this.setSettingValue(t),this.tm.setCSSVariable("--max-chars-per-line",`${t}ch`),this.tm.saveSettings().catch((e)=>{})}}function oe(t){return Object.fromEntries([new Ct(t),new St(t)].map((e)=>[e.getSettingKey(),e]))}class ft extends r{settingKey="restoreCursorPosition.isRestoreCursorPositionEnabled";settingTitle="Restore cursor position";settingDesc="Restore the last cursor position when opening files";get state(){return this.tm.settings.restoreCursorPosition.cursorPositions}set state(t){this.tm.settings.restoreCursorPosition.cursorPositions=t}enable(){super.enable(),this.tm.plugin.registerEvent(this.tm.plugin.app.workspace.on("quit",this.saveState)),this.tm.plugin.registerEvent(this.tm.plugin.app.vault.on("rename",this.onRenameFile)),this.tm.plugin.registerEvent(this.tm.plugin.app.vault.on("delete",this.onDeleteFile)),this.tm.plugin.registerEvent(this.tm.plugin.app.workspace.on("file-open",this.onFileOpen))}disable(){this.saveState().catch((t)=>{}),this.tm.plugin.app.workspace.off("quit",this.saveState),this.tm.plugin.app.workspace.off("rename",this.onRenameFile),this.tm.plugin.app.workspace.off("delete",this.onDeleteFile),this.tm.plugin.app.workspace.off("file-open",this.onFileOpen)}saveState=async()=>{await this.tm.saveSettings()};onRenameFile=(t,e)=>{let i=t.path,n=e;this.state[i]=this.state[n],delete this.state[n]};onDeleteFile=(t)=>{let e=t.path;delete this.state[e]};setCursorState(t){let e=this.tm.plugin.app.workspace.getActiveFile()?.path;if(!e)return;this.state[e]=t}onFileOpen=(t)=>{if(!t)return;if(!this.state[t.path])return;window.requestAnimationFrame(()=>{this.restoreSavedPosition(t.path)})};restoreSavedPosition(t){let e=this.tm.plugin.app.workspace.getLeavesOfType("markdown");for(let i of e){let n=i.view;if(n.getViewType()==="markdown"){let o=n.editor;if(!o?.cm)continue;let s=o.cm;if(this.tm.plugin.app.workspace.getActiveFile()?.path===t){let m=this.state[t];if(!this.tm.plugin.app.workspace.containerEl.querySelector("span.is-flashing")&&m)s.dispatch({selection:m})}}}}}function se(t){return Object.fromEntries([new ft(t)].map((e)=>[e.getSettingKey(),e]))}class xt extends r{settingKey="typewriter.isOnlyMaintainTypewriterOffsetWhenReachedEnabled";hasCommand=!1;settingTitle="Only maintain typewriter offset when reached";settingDesc="The line that the cursor is on will not be scrolled to the center of the editor until it the specified typewriter offset is reached. This removes the additional space at the top of the editor."}class Vt extends p{settingKey="typewriter.typewriterOffset";getDefinition(t){return{name:"Typewriter offset",desc:"Positions the typewriter line at the specified percentage of the screen",render:(e)=>{e.setClass("typewriter-mode-setting").addSlider((i)=>i.setLimits(0,100,5).setDynamicTooltip().setValue(this.getSettingValue()*100).onChange((n)=>{this.changeTypewriterOffset(n/100),t?.()}))}}}registerSetting(t){t.addSetting((e)=>{e.setName("Typewriter offset").setDesc("Positions the typewriter line at the specified percentage of the screen").setClass("typewriter-mode-setting").addSlider((i)=>i.setLimits(0,100,5).setDynamicTooltip().setValue(this.getSettingValue()*100).onChange((n)=>{this.changeTypewriterOffset(n/100)}))})}changeTypewriterOffset(t){this.setSettingValue(t),this.tm.saveSettings().catch((e)=>{})}}class Mt extends r{settingKey="typewriter.isTypewriterOnlyUseCommandsEnabled";toggleClass="ptm-typewriter-only-use-commands";settingTitle="Do not snap typewriter with arrow keys";settingDesc="The typewriter will only snap when using this plugin's move commands. It will not snap when using the arrow keys. The move commands are by default Cmd/Ctrl+ArrowUp/ArrowDown, but you can assign your own hotkeys for the move commands in Obsidian's settings."}class Dt extends r{settingKey="typewriter.isTypewriterScrollEnabled";toggleClass="ptm-typewriter-scroll";settingTitle="Typewriter scrolling";settingDesc="Turns typewriter scrolling on or off";isSettingEnabled(){return!this.tm.settings.keepLinesAboveAndBelow.isKeepLinesAboveAndBelowEnabled}}function re(t){return Object.fromEntries([new Dt(t),new Vt(t),new xt(t),new Mt(t)].map((e)=>[e.getSettingKey(),e]))}class wt extends r{settingKey="general.isAnnounceUpdatesEnabled";toggleClass="ptm-announce-updates";settingTitle="Announce updates";settingDesc="If enabled you will get a notice with release notes whenever you install a new version of Typewriter Mode"}function de(t){return Object.fromEntries([new wt(t)].map((e)=>[e.getSettingKey(),e]))}class vt extends p{settingKey="writingFocus.writingFocusFontSize";getDefinition(t){return{name:"Writing focus font size",desc:"Custom font size in points for writing focus mode (0 = use default font size)",render:(e)=>{e.setClass("typewriter-mode-setting").addSlider((i)=>i.setLimits(0,36,1).setDynamicTooltip().setValue(this.getSettingValue()).onChange((n)=>{this.changeFontSize(n),t?.()}))}}}registerSetting(t){t.addSetting((e)=>{e.setName("Writing focus font size").setDesc("Custom font size in points for writing focus mode (0 = use default font size)").setClass("typewriter-mode-setting").addSlider((i)=>i.setLimits(0,36,1).setDynamicTooltip().setValue(this.getSettingValue()).onChange((n)=>{this.changeFontSize(n)}))})}load(){let t=this.getSettingValue();if(t>0)this.tm.setCSSVariable("--writing-focus-font-size",`${t}pt`);else this.tm.setCSSVariable("--writing-focus-font-size","inherit")}changeFontSize(t){if(this.setSettingValue(t),t>0)this.tm.setCSSVariable("--writing-focus-font-size",`${t}pt`);else this.tm.setCSSVariable("--writing-focus-font-size","inherit");this.tm.saveSettings().catch((e)=>{})}}class Ot extends r{settingKey="writingFocus.isWritingFocusFullscreen";settingTitle="Make Obsidian fullscreen in writing focus";settingDesc="If enabled, the Obsidian window will toggle to fullscreen when entering writing focus"}class Lt extends r{settingKey="writingFocus.doesWritingFocusShowHeader";toggleClass="ptm-writing-focus-shows-header";settingTitle="Show header in writing focus";settingDesc="If enabled, the header will be shown in writing focus"}class Ht extends r{settingKey="writingFocus.doesWritingFocusShowStatusBar";toggleClass="ptm-writing-focus-shows-status-bar";settingTitle="Show status bar in writing focus";settingDesc="If enabled, the status bar will be shown in writing focus"}class Kt extends r{settingKey="writingFocus.doesWritingFocusShowVignette";settingTitle="Writing focus vignette";settingDesc="Add a vignette to the edges of the screen in writing focus"}class Pt extends p{settingKey="writingFocus.writingFocusVignetteStyle";getDefinition(t){return{name:"Writing focus vignette style",desc:"The style of the vignette in writing focus mode",render:(e)=>{e.setClass("typewriter-mode-setting").addDropdown((i)=>i.addOption(w.BOX,"Box").addOption(w.COLUMN,"Column").setValue(this.getSettingValue()).onChange((n)=>{this.changeVignetteStyle(n),t?.()}))}}}registerSetting(t){t.addSetting((e)=>{e.setName("Writing focus vignette style").setDesc("The style of the vignette in writing focus mode").setClass("typewriter-mode-setting").addDropdown((i)=>i.addOption(w.BOX,"Box").addOption(w.COLUMN,"Column").setValue(this.getSettingValue()).onChange((n)=>{this.changeVignetteStyle(n)}))})}changeVignetteStyle(t){this.setSettingValue(t),this.tm.saveSettings().catch((e)=>{})}}function ae(t){return Object.fromEntries([new Lt(t),new Ht(t),new Ot(t),new Kt(t),new Pt(t),new vt(t)].map((e)=>[e.getSettingKey(),e]))}function Me(t){return{currentLine:Gt(t),dimming:te(t),general:ee(t),hemingwayMode:ie(t),keepAboveAndBelow:ne(t),maxChar:oe(t),typewriter:re(t),updates:de(t),writingFocus:ae(t),restoreCursorPosition:se(t)}}class Bt{plugin;loadData;saveData;settings=a;perWindowProps={cssVariables:{},bodyClasses:[],bodyAttrs:{},allBodyClasses:[],persistentBodyClasses:[]};editorExtensions;features;commands;constructor(t,e,i){this.plugin=t,this.loadData=e,this.saveData=i,this.features=Me(this),this.commands=Ce(this),this.editorExtensions=[Wt(this),[]]}async load(){await this.loadSettings(),await this.saveSettings(),this.loadPerWindowProps(),this.loadEditorExtension()}loadPerWindowProps(){let t=[];for(let e of Object.values(this.features))for(let i of Object.values(e))i.load(),t=t.concat(i.getBodyClasses());this.perWindowProps.allBodyClasses=t;for(let e of Object.values(this.commands))e.load()}getRestoreCursorPositionFeature(){return this.features.restoreCursorPosition["restoreCursorPosition.isRestoreCursorPositionEnabled"]}loadEditorExtension(){this.plugin.registerEditorExtension(this.editorExtensions)}loadSettingsTab(){this.plugin.addSettingTab(new z(this.plugin.app,this))}unload(){for(let t of Object.values(this.features))for(let e of Object.values(t))e.disable()}async loadSettings(){let t=this.plugin.manifest.dir;if(!t)return;let e=await this.loadData();this.settings=await fe(e??{},this.plugin.app.vault,t)}async saveSettings(){await this.saveData(this.settings),this.plugin.app.workspace.updateOptions()}setCSSVariable(t,e){this.perWindowProps.cssVariables[t]=e}}class me extends De.Plugin{tm;constructor(t,e){super(t,e);this.tm=new Bt(this,async()=>await this.loadData(),async(i)=>await this.saveData(i))}async onload(){await this.tm.load(),this.tm.loadSettingsTab(),this.app.workspace.onLayoutReady(()=>{this.announceUpdate()})}onunload(){this.tm.unload()}openUpdateModal(t){let e=this.manifest.version;new $(this.app,e,t??null).open()}announceUpdate(){let t=this.manifest.version,e=this.tm.settings.general.version??null;if(t===e)return;if(this.tm.settings.general.version=t,this.tm.saveSettings().catch((n)=>{}),this.tm.settings.general.isAnnounceUpdatesEnabled===!1)return;new $(this.app,t,e).open()}} + +/* nosourcemap */ \ No newline at end of file diff --git a/plugins/typewriter-mode/manifest.json b/plugins/typewriter-mode/manifest.json new file mode 100644 index 0000000..793283c --- /dev/null +++ b/plugins/typewriter-mode/manifest.json @@ -0,0 +1,14 @@ +{ + "id": "typewriter-mode", + "name": "Typewriter Mode", + "author": "Davis Riedel", + "authorUrl": "https://davis-riedel.de/en/software", + "description": "Typewriter scroll, highlight current line, dim unfocused paragraphs and sentences, writing focus, restore cursor position and more.", + "isDesktopOnly": false, + "version": "1.5.0", + "minAppVersion": "1.11.0", + "fundingUrl": { + "Buy Me a Coffee": "https://www.buymeacoffee.com/davis.riedel", + "GitHub Sponsors": "https://github.com/sponsors/davisriedel" + } +} \ No newline at end of file diff --git a/plugins/typewriter-mode/styles.css b/plugins/typewriter-mode/styles.css new file mode 100644 index 0000000..a7b14d4 --- /dev/null +++ b/plugins/typewriter-mode/styles.css @@ -0,0 +1 @@ +.typewriter-mode-setting.setting-item.is-disabled{opacity:.5}.vertical-tab-nav-item[data-setting-id=typewriter-mode] .vertical-tab-nav-item-icon{display:flex}.ptm-update-modal{display:flex;flex-direction:column;align-items:center;justify-content:center}.ptm-update-modal h1{font-size:1.5rem}.ptm-update-modal h2{font-size:1.25rem}.ptm-update-modal h3{font-size:1rem;font-weight:bold}.ptm-update-modal ul{margin:0;padding:0}.ptm-update-modal ul li{margin-left:1em}.typewriter-mode-file-paths-modal{width:75vw;height:75vh}.typewriter-mode-file-paths-columns{display:flex;gap:1.5em}.typewriter-mode-file-paths-column{flex:1;min-width:0}.typewriter-mode-file-paths-column h3{margin-bottom:.25em}.typewriter-mode-file-paths-column .setting-item-description{margin-top:0;margin-bottom:.75em}.typewriter-mode-file-paths-input{width:100%;box-sizing:border-box;margin-bottom:.5em}.typewriter-mode-file-paths-list{display:flex;flex-direction:column;gap:.25em;max-height:40vh;overflow-y:auto}.typewriter-mode-file-paths-row{display:flex;align-items:center;gap:.75em;padding:.25em .5em;border-radius:var(--radius-s);background-color:var(--background-secondary)}.typewriter-mode-file-paths-row-name{flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ptm-current-line{display:block;position:absolute;left:0;width:100%;pointer-events:none;z-index:1}.cm-editor .cm-cursorLayer{z-index:200}.ptm-first-open .ptm-current-line{display:none}body.ptm-highlight-current-line-only-in-active-editor .cm-editor:not(.cm-focused) .ptm-current-line{display:none}body.ptm-highlight-current-line-only-in-writing-focus-mode:not(.ptm-focus-mode) .ptm-current-line{display:none}body.theme-light.ptm-current-line-highlight-box.ptm-highlight-current-line .ptm-current-line{mix-blend-mode:multiply;background-color:var(--current-line-highlight-color-light)}body.theme-light.ptm-current-line-highlight-underline.ptm-highlight-current-line .ptm-current-line{mix-blend-mode:multiply;border-bottom:var(--current-line-highlight-underline-thickness) solid var(--current-line-highlight-color-light)}body.theme-dark.ptm-current-line-highlight-box.ptm-highlight-current-line .ptm-current-line{mix-blend-mode:screen;background-color:var(--current-line-highlight-color-dark)}body.theme-dark.ptm-current-line-highlight-underline.ptm-highlight-current-line .ptm-current-line{mix-blend-mode:screen;border-bottom:var(--current-line-highlight-underline-thickness) solid var(--current-line-highlight-color-dark)}body.ptm-current-line-pause-while-scrolling .cm-editor.ptm-scroll .ptm-current-line{opacity:0}body.ptm-current-line-pause-while-selecting .cm-editor.ptm-select .ptm-current-line{opacity:0}body.ptm-fade-lines-only-in-writing-focus-mode:not(.ptm-focus-mode) .ptm-current-line-fade-before,body.ptm-fade-lines-only-in-writing-focus-mode:not(.ptm-focus-mode) .ptm-current-line-fade-after{display:none}body.ptm-fade-lines .ptm-current-line-fade-before{display:block;position:absolute;height:100vh;left:0;width:100%;pointer-events:none;z-index:100;background:linear-gradient(to top, rgba(0,0,0,0), var(--background-primary) var(--ptm-fade-lines-intensity))}body.ptm-fade-lines .ptm-current-line-fade-after{display:block;position:absolute;height:100vh;left:0;width:100%;pointer-events:none;z-index:100;background:linear-gradient(to bottom, rgba(0,0,0,0), var(--background-primary) var(--ptm-fade-lines-intensity))}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .CodeMirror-lines:not(.selecting) .CodeMirror-code,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .CodeMirror-lines:not(.selecting) .CodeMirror-code,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line.cm-active:not(:has(.active-sentence)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line.cm-active .active-paragraph{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent):not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line.cm-active .active-sentence{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .CodeMirror-lines:not(.selecting) .CodeMirror-code,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .CodeMirror-lines:not(.selecting) .CodeMirror-code,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active:not(:has(.active-sentence)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-paragraph{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line.cm-active .active-sentence{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line.cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line.cm-active:not(:has(.active-sentence)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line.cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line.cm-active .active-paragraph{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode):not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line.cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode:not(.ptm-dim-highlight-list-parent).ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line.cm-active .active-sentence{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open){}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open){}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open){}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .CodeMirror-lines:not(.selecting) .CodeMirror-code,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .CodeMirror-lines:not(.selecting) .CodeMirror-code,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open){}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open){}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open){}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper:not(:has(.cm-active)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-cell-wrapper .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line).cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent:not(.ptm-dim-table-as-one)[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open){}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open){}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open){}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.cm-active):not(.HyperMD-list-line){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .CodeMirror-lines:not(.selecting) .CodeMirror-code,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .CodeMirror-lines:not(.selecting) .CodeMirror-code,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=paragraphs][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open){}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open){}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-none].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open){}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line.cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-2.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-2.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-1:has(~.HyperMD-list-line-1~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-3.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-3.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-2:has(~.HyperMD-list-line-2~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-4.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-4.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-3:has(~.HyperMD-list-line-3~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-5.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-5.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-4:has(~.HyperMD-list-line-4~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-6.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-6.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-5:has(~.HyperMD-list-line-5~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-7.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-7.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-6:has(~.HyperMD-list-line-6~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-8.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-8.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-7:has(~.HyperMD-list-line-7~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-9.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-9.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-8:has(~.HyperMD-list-line-8~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-9:has(~.HyperMD-list-line-9~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-11.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-11.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10.cm-active){opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .HyperMD-list-line-10:has(~.HyperMD-list-line-10~.HyperMD-list-line-10.cm-active){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor:not(:has(.cm-active)) .table-cell-wrapper{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .table-editor .cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .table-editor .cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all]:not(.ptm-dim-unfocused-pause-while-scrolling,.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling:not(.ptm-dim-unfocused-pause-while-selecting) .cm-editor.cm-focused:not(.ptm-scroll,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-selecting:not(.ptm-dim-unfocused-pause-while-scrolling) .cm-editor.cm-focused:not(.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all].ptm-dim-unfocused-pause-while-scrolling.ptm-dim-unfocused-pause-while-selecting .cm-editor.cm-focused:not(.ptm-scroll,.ptm-select,.ptm-first-open) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line).cm-active,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line).cm-active{opacity:1}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)),body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line).cm-active:not(:has(.active-sentence)){opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line).cm-active .active-paragraph{opacity:var(--dimmed-opacity)}body.ptm-dim-unfocused:not(.ptm-dim-unfocused-only-in-writing-focus-mode).ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence,body.ptm-dim-unfocused.ptm-focus-mode.ptm-dim-highlight-list-parent.ptm-dim-table-as-one[data-ptm-dim-unfocused-mode=sentences][data-ptm-dim-unfocused-editors-behavior=dim-all] .cm-editor:not(.cm-focused) .cm-line:not(.HyperMD-list-line).cm-active .active-sentence{opacity:1}body.ptm-max-chars-per-line .cm-sizer{max-width:var(--max-chars-per-line);margin:auto}.ptm-wf-split-hidden{display:none !important}body.ptm-focus-mode:not(.ptm-writing-focus-shows-status-bar) .status-bar,body.ptm-focus-mode:not(.ptm-writing-focus-shows-header) .view-header,body.ptm-focus-mode .inline-title,body.ptm-focus-mode .workspace-split.ptm-maximized .workspace-leaf:not(.mod-active),body.ptm-focus-mode .workspace-split.ptm-maximized .workspace-leaf.mod-active~.workspace-split,body.ptm-focus-mode .workspace-ribbon,body.ptm-focus-mode .workspace-tab-header-container{display:none}body.ptm-focus-mode .workspace-tab-header-container{padding-left:var(--size-4-8)}body.ptm-focus-mode .view-content{height:100%}body.ptm-focus-mode .workspace-split.ptm-maximized .workspace-leaf.mod-active{flex-basis:calc(100% - 4px)}body.ptm-focus-mode .workspace-ribbon,body.ptm-focus-mode .sidebar-toggle-button{visibility:hidden}body.ptm-focus-mode .workspace-ribbon::before,body.ptm-focus-mode .side-dock-ribbon-action[aria-label="Toggle Writing Focus"]{visibility:visible}body.ptm-focus-mode .ptm-writing-focus-vignette-element::before{z-index:1000;pointer-events:none;content:"";position:absolute;inset:0}body.ptm-focus-mode .ptm-writing-focus-vignette-element[data-ptm-writing-focus-vignette-style=box]::before{box-shadow:inset 0 0 2em 2em rgba(0,0,0,.5)}body.ptm-focus-mode .ptm-writing-focus-vignette-element[data-ptm-writing-focus-vignette-style=column]::before{background:linear-gradient(to right, rgba(0,0,0,.5), rgba(0,0,0,0) 5vw, rgba(0,0,0,0) 95vw, rgba(0,0,0,.5))}body.ptm-focus-mode .markdown-source-view.cm-s-obsidian,body.ptm-focus-mode .cm-editor .cm-scroller .cm-content,body.ptm-focus-mode .cm-editor .cm-scroller .cm-content table,body.ptm-focus-mode .cm-editor .cm-scroller .cm-content table *{font-size:var(--writing-focus-font-size)}.mod-inside-iframe .cm-sizer,.workspace-leaf.mod-active .cm-sizer{position:relative;z-index:1}.mod-inside-iframe .cm-sizer::before,.workspace-leaf.mod-active .cm-sizer::before{content:"";position:absolute;top:0;left:0;right:0;height:100vh;background:rgba(0,0,0,0);z-index:-1} \ No newline at end of file diff --git a/templates.json b/templates.json new file mode 100644 index 0000000..e41017d --- /dev/null +++ b/templates.json @@ -0,0 +1,4 @@ +{ + "folder": "Templates", + "dateFormat": "YYYY.MM.DD" +} \ No newline at end of file diff --git a/themes/Minimal/manifest.json b/themes/Minimal/manifest.json new file mode 100644 index 0000000..e725aa5 --- /dev/null +++ b/themes/Minimal/manifest.json @@ -0,0 +1,8 @@ +{ + "name": "Minimal", + "version": "8.2.1", + "minAppVersion": "1.9.0", + "author": "@kepano", + "authorUrl": "https://twitter.com/kepano", + "fundingUrl": "https://www.buymeacoffee.com/kepano" +} diff --git a/themes/Minimal/theme.css b/themes/Minimal/theme.css new file mode 100644 index 0000000..14a3812 --- /dev/null +++ b/themes/Minimal/theme.css @@ -0,0 +1,8793 @@ +/* --------------------------------------------------------------------------- + +Minimal Theme by @kepano + +User interface replacement for Obsidian. + +Designed to be used with the Minimal Theme Settings +plugin and the Hider plugin. + +Sponsor my work: +https://www.buymeacoffee.com/kepano + +Readme: +https://github.com/kepano/obsidian-minimal + +----------------------------------------------------------------------------- + +MIT License + +Copyright (c) 2020-2024 Steph Ango (@kepano) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +*/ + +@charset "UTF-8"; +/* Variables */ +body { + --font-editor-theme:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,Ubuntu,sans-serif; + --font-editor:var(--font-editor-override), var(--font-text-override), var(--font-editor-theme); + /* Bases */ + --bases-table-column-border-width: 0px; + --bases-header-border-width: 0; + /* Blockquotes */ + --blockquote-style:normal; + --blockquote-color: var(--text-muted); + --blockquote-border-thickness: 1px; + --blockquote-border-color: var(--quote-opening-modifier); + /* Embeds */ + --embed-block-shadow-hover: none; + /* Font sizes */ + --font-ui-smaller: 11px; + /* Font weights */ + --normal-weight: 400; + /* Headings */ + --inline-title-margin-bottom: 1rem; + --h1-size: 1.125em; + --h2-size: 1.05em; + --h3-size: 1em; + --h4-size: 0.90em; + --h5-size: 0.85em; + --h6-size: 0.85em; + --h1-weight: 600; + --h2-weight: 600; + --h3-weight: 500; + --h4-weight: 500; + --h5-weight: 500; + --h6-weight: 400; + --h1-variant: normal; + --h2-variant: normal; + --h3-variant: normal; + --h4-variant: normal; + --h5-variant: small-caps; + --h6-variant: small-caps; + --h1-style: normal; + --h2-style: normal; + --h3-style: normal; + --h4-style: normal; + --h5-style: normal; + --h6-style: normal; + /* Line widths */ + --line-width: 40rem; + --line-height: 1.5; + --line-height-normal: var(--line-height); + --max-width: 88%; + --max-col-width: 18em; + /* Icons */ + --icon-muted: 0.5; + /* Quotes and transclusions */ + --nested-padding:1.1em; + /* Lists */ + --folding-offset: 32px; + --list-edit-offset: 0.5em; + --list-indent: 2em; + --list-spacing: 0.075em; + --input-height: 32px; + --header-height: 40px; + /* Metadata */ + --metadata-label-width-multiplier: 9; + --metadata-label-width: calc(var(--font-adaptive-small) * var(--metadata-label-width-multiplier)); + --metadata-label-font-size: var(--font-adaptive-small); + --metadata-input-font-size: var(--font-adaptive-small); + /* Mobile sidebars */ + --mobile-left-sidebar-width: 280pt; + --mobile-right-sidebar-width: 240pt; + --top-left-padding-y:0px; + /* Image opacity in dark mode */ + --image-muted:0.7; + --image-radius: 4px; + /* Spacing */ + --heading-spacing: 2em; + --p-spacing: 1.75rem; + --border-width: 1px; + --table-border-width: var(--border-width); + --table-selection: var(--text-selection); + --table-selection-border-color: var(--text-accent); + --table-selection-border-width: 0px; + --table-selection-border-radius: 0px; + --table-drag-handle-background-active: var(--text-selection); + --table-drag-handle-color-active: var(--text-accent); + --table-add-button-border-width: 0px; + /* Readable line length off */ + --file-margins-y: var(--size-4-2); +} + +.mod-macos { + --top-left-padding-y:24px; +} + +.is-phone { + /* Metadata */ + --metadata-label-font-size: var(--font-adaptive-smaller); + --metadata-input-font-size: var(--font-adaptive-smaller); +} + +@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) { + .is-phone { + --border-width: 0.75px; + } +} +/* Dynamic colors + +Most colors are driven from the following values, meaning that +the backgrounds, borders, and various shades are +automatically generated. + +- Base color is used for the backgrounds, text and borders. +- Accent color is used for links and some interactive elements. + +The colors use HSL (hue, saturation, lightness) + +- Hue (0-360 degrees):0 is red, 120 is green, and 240 is blue +- Saturation (0-100%):0% is desaturated, 100% is full saturation +- Lightness (0-100%):0% is black, 100% is white + +*/ +body { + --base-h: 0; /* Base hue */ + --base-s: 0%; /* Base saturation */ + --base-l: 96%; /* Base lightness - 100 is white */ + --accent-h: 201; /* Accent hue */ + --accent-s: 17%; /* Accent saturation */ + --accent-l: 50%; /* Accent lightness */ +} + +.theme-dark, +.theme-light { + --color-red-rgb: 208,66,85; + --color-orange-rgb: 213,118,63; + --color-yellow-rgb: 229,181,103; + --color-green-rgb: 168,195,115; + --color-cyan-rgb: 115,187,178; + --color-blue-rgb: 108,153,187; + --color-purple-rgb: 158,134,200; + --color-pink-rgb: 176,82,121; + --color-red: #d04255; + --color-orange: #d5763f; + --color-yellow: #e5b567; + --color-green: #a8c373; + --color-cyan: #73bbb2; + --color-blue: #6c99bb; + --color-purple: #9e86c8; + --color-pink: #b05279; +} + +.theme-light, +.theme-light.minimal-default-light, +body .excalidraw { + --bg1:white; + --bg2: + hsl( + var(--base-h), + var(--base-s), + var(--base-l) + ); + --bg3: + hsla( + var(--base-h), + var(--base-s), + calc(var(--base-l) - 50%), + 0.12 + ); + --ui1: + hsl( + var(--base-h), + var(--base-s), + calc(var(--base-l) - 6%) + ); + --ui2: + hsl( + var(--base-h), + var(--base-s), + calc(var(--base-l) - 12%) + ); + --ui3: + hsl( + var(--base-h), + var(--base-s), + calc(var(--base-l) - 20%) + ); + --tx1: + hsl( + var(--base-h), + var(--base-s), + calc(var(--base-l) - 90%) + ); + --tx2: + hsl( + var(--base-h), + calc(var(--base-s) - 20%), + calc(var(--base-l) - 50%) + ); + --tx3: + hsl( + var(--base-h), + calc(var(--base-s) - 10%), + calc(var(--base-l) - 25%) + ); + --tx4: + hsl( + var(--base-h), + calc(var(--base-s) - 10%), + calc(var(--base-l) - 60%) + ); + --ax1: + hsl( + var(--accent-h), + var(--accent-s), + var(--accent-l) + ); + --ax2: + hsl( + var(--accent-h), + var(--accent-s), + calc(var(--accent-l) - 8%) + ); + --ax3: + hsl( + var(--accent-h), + var(--accent-s), + calc(var(--accent-l) + 6%) + ); + --hl1: + hsla( + var(--accent-h), + 50%, + calc(var(--base-l) - 20%), + 30% + ); + --hl2:rgba(255, 225, 0, 0.5); + --sp1: white; +} + +.theme-light.minimal-light-contrast .titlebar, +.theme-light.minimal-light-contrast.minimal-status-off .status-bar, +.theme-dark, +.theme-dark.minimal-default-dark, +.excalidraw.theme--dark { + --accent-l:60%; + --base-l:15%; + --bg1: + hsl( + var(--base-h), + var(--base-s), + var(--base-l) + ); + --bg2: + hsl( + var(--base-h), + var(--base-s), + calc(var(--base-l) - 2%) + ); + --bg3: + hsla( + var(--base-h), + var(--base-s), + calc(var(--base-l) + 40%), + 0.12 + ); + --ui1: + hsl( + var(--base-h), + var(--base-s), + calc(var(--base-l) + 6%) + ); + --ui2: + hsl( + var(--base-h), + var(--base-s), + calc(var(--base-l) + 12%) + ); + --ui3: + hsl( + var(--base-h), + var(--base-s), + calc(var(--base-l) + 20%) + ); + --tx1: + hsl( + var(--base-h), + calc(var(--base-s) - 10%), + calc(var(--base-l) + 67%) + ); + --tx2: + hsl( + var(--base-h), + calc(var(--base-s) - 20%), + calc(var(--base-l) + 45%) + ); + --tx3: + hsl( + var(--base-h), + calc(var(--base-s) - 10%), + calc(var(--base-l) + 20%) + ); + --tx4: + hsl( + var(--base-h), + calc(var(--base-s) - 10%), + calc(var(--base-l) + 50%) + ); + --ax1: + hsl( + var(--accent-h), + var(--accent-s), + var(--accent-l) + ); + --ax2: + hsl( + var(--accent-h), + var(--accent-s), + calc(var(--accent-l) + 8%) + ); + --ax3: + hsl( + var(--accent-h), + var(--accent-s), + calc(var(--accent-l) - 5%) + ); + --hl1: + hsla( + var(--accent-h), + 50%, + 40%, + 30% + ); + --hl2:rgba(255, 177, 80, 0.3); + --sp1: white; +} + +.theme-light.minimal-light-white { + --background-primary: white; + --background-secondary: white; + --background-secondary-alt: white; + --ribbon-background: white; + --titlebar-background: white; + --mobile-sidebar-background: white; + --bg1: white; +} + +.theme-dark.minimal-dark-black { + --base-d:0%; + --titlebar-background: black; + --background-primary: black; + --background-secondary: black; + --background-secondary-alt: black; + --ribbon-background: black; + --background-modifier-hover: + hsl( + var(--base-h), + var(--base-s), + calc(var(--base-d) + 10%)) ; + --tx1:hsl( + var(--base-h), + var(--base-s), + calc(var(--base-d) + 75%) + ); + --tx2:hsl( + var(--base-h), + var(--base-s), + calc(var(--base-d) + 50%) + ); + --tx3:hsl( + var(--base-h), + var(--base-s), + calc(var(--base-d) + 25%) + ); + --ui1:hsl( + var(--base-h), + var(--base-s), + calc(var(--base-d) + 12%) + ); + --ui2:hsl( + var(--base-h), + var(--base-s), + calc(var(--base-d) + 20%) + ); + --ui3:hsl( + var(--base-h), + var(--base-s), + calc(var(--base-d) + 30%) + ); +} + +/* Map colors to semantic Obsidian names */ +.theme-light { + --mono100: black; + --mono0: white; +} + +.theme-dark { + --mono100: white; + --mono0: black; +} + +.theme-light.minimal-light-contrast .titlebar, +.theme-light.minimal-light-contrast.minimal-status-off .status-bar, +.theme-light.minimal-light-contrast.is-mobile .workspace-drawer.mod-left, +.theme-dark, +.theme-light { + --background-modifier-accent: var(--ax3); + --background-modifier-border-focus: var(--ui3); + --background-modifier-border-hover: var(--ui2); + --background-modifier-border: var(--ui1); + --mobile-sidebar-background: var(--bg1); + --background-modifier-form-field-highlighted: var(--bg1); + --background-modifier-form-field: var(--bg1); + --background-modifier-success: var(--color-green); + --background-modifier-hover: var(--bg3); + --background-modifier-active-hover: var(--bg3); + --background-primary: var(--bg1); + --background-primary-alt: var(--bg2); + --background-secondary: var(--bg2); + --background-secondary-alt: var(--bg1); + --background-table-rows: var(--bg2); + --checkbox-color: var(--ax3); + --code-normal: var(--tx1); + --divider-color: var(--ui1); + --frame-divider-color: var(--ui1); + --icon-color-active: var(--tx1); + --icon-color-focused: var(--tx1); + --icon-color-hover: var(--tx2); + --icon-color: var(--tx2); + --icon-hex: var(--mono0); + --interactive-normal: var(--ui1); + --interactive-accent-hover: var(--ax1); + --interactive-accent: var(--ax3); + --interactive-hover: var(--ui1); + --list-marker-color: var(--tx3); + --nav-item-background-active: var(--bg3); + --nav-item-background-hover: var(--bg3); + --nav-item-color: var(--tx2); + --nav-item-color-active: var(--tx1); + --nav-item-color-hover: var(--tx1); + --nav-item-color-selected: var(--tx1); + --nav-collapse-icon-color: var(--tx2); + --nav-collapse-icon-color-collapsed: var(--tx2); + --nav-indentation-guide-color: var(--ui1); + --prompt-border-color: var(--ui3); + --quote-opening-modifier: var(--ui2); + --ribbon-background: var(--bg2); + --scrollbar-active-thumb-bg: var(--ui3); + --scrollbar-bg: transparent; + --scrollbar-thumb-bg: var(--ui1); + --search-result-background: var(--bg1); + --tab-text-color-focused-active: var(--tx1); + --tab-outline-color: var(--ui1); + --text-accent-hover: var(--ax2); + --text-accent: var(--ax1); + --text-blockquote: var(--tx2); + --text-bold: var(--tx1); + --text-code: var(--tx4); + --text-error: var(--color-red); + --text-faint: var(--tx3); + --text-highlight-bg: var(--hl2); + --text-italic: var(--tx1); + --text-muted: var(--tx2); + --text-normal: var(--tx1); + --text-on-accent: var(--sp1); + --text-selection: var(--hl1); + --text-formatting: var(--tx3); + --title-color-inactive: var(--tx2); + --title-color: var(--tx1); + --titlebar-background: var(--bg2); + --titlebar-background-focused: var(--bg2); + --titlebar-text-color-focused: var(--tx1); + --vault-profile-color: var(--tx1); + --vault-profile-color-hover: var(--tx1); + --workspace-background-translucent: hsla(var(--base-h),var(--base-s), var(--base-l), 0.7); +} + +.theme-light.minimal-light-contrast.is-mobile .workspace-drawer.mod-left { + --raised-background: var(--ui1); + --raised-shadow: none; + --raised-mask-border-width: 0px; +} + +.theme-dark .view-actions, +.theme-light .view-actions { + --icon-color-active: var(--ax1); +} + +.theme-light.minimal-light-contrast { + --workspace-background-translucent: rgba(0,0,0,0.6); +} + +.theme-light.minimal-light-contrast .theme-dark { + --tab-container-background: var(--bg2); + --ribbon-background-collapsed: var(--bg2); +} + +.theme-light { + --interactive-accent-rgb:220, 220, 220; + --active-line-bg: rgba(0,0,0,0.035); + --background-modifier-cover:hsla(var(--base-h),calc(var(--base-s) - 70%),calc(var(--base-l) - 20%),0.5); + --text-highlight-bg-active: rgba(0, 0, 0, 0.1); + /* Shadows */ + --shadow-color: rgba(0, 0, 0, 0.1); + --btn-shadow-color: rgba(0, 0, 0, 0.05); +} + +.theme-dark { + --interactive-normal: var(--bg3); + --interactive-accent-rgb: 66, 66, 66; + --active-line-bg: rgba(255,255,255,0.04); + --background-modifier-cover: hsla(var(--base-h),var(--base-s), calc(var(--base-l) - 12%), 0.5); + --text-highlight-bg-active: rgba(255, 255, 255, 0.1); + /* Shadows */ + --background-modifier-box-shadow: rgba(0, 0, 0, 0.3); + --shadow-color: rgba(0, 0, 0, 0.3); + --btn-shadow-color: rgba(0, 0, 0, 0.2); + --modal-border-color: var(--ui2); +} + +.theme-light.minimal-light-white { + --background-table-rows: var(--bg2); + --interactive-normal: var(--ui1); + --setting-items-background: transparent; + --setting-items-border-width: 1px; +} + +.theme-light.minimal-light-tonal { + --background-secondary: var(--bg1); + --background-primary-alt: var(--bg3); + --background-table-rows: var(--bg3); + --setting-items-background: var(--bg1); + --setting-items-border-width: 1px; +} +.theme-light.minimal-light-tonal.is-mobile { + --background-modifier-form-field: var(--bg3); + --interactive-normal: var(--bg3); +} + +.theme-dark.minimal-dark-tonal { + --ribbon-background: var(--bg1); + --background-secondary: var(--bg1); + --background-table-rows: var(--bg3); + --setting-items-background: var(--bg1); + --setting-items-border-width: 1px; +} + +.theme-dark.minimal-dark-black { + --background-primary-alt: var(--bg3); + --background-table-rows: var(--bg3); + --setting-items-background: black; + --setting-items-border-width: 1px; + --modal-border: var(--ui2); + --active-line-bg: rgba(255,255,255,0.085); + --background-modifier-form-field: var(--bg3); + --background-modifier-cover:hsla(var(--base-h),var(--base-s),calc(var(--base-d) + 8%),0.7); + --background-modifier-box-shadow: rgba(0, 0, 0, 1); +} + +/* Desktop font sizes */ +body { + --font-adaptive-normal:var(--font-text-size,var(--editor-font-size)); + --font-adaptive-small: calc(var(--font-ui-small) * 1.07); + --font-adaptive-smaller: var(--font-ui-small); + --font-adaptive-smallest: var(--font-ui-smaller); + --line-width-wide:calc(var(--line-width) + 12.5%); + --font-code:calc(var(--font-adaptive-normal) * 0.9); + --table-text-size:calc(var(--font-adaptive-normal) * 0.875); + --bases-table-font-size:calc(var(--font-adaptive-normal) * 0.875); +} + +/* Obsidian */ +/* Obsidian app */ +.bases-view { + --bases-table-font-size: var(--table-text-size); +} + +.query-toolbar-menu .combobox-button { + background-color: transparent; +} + +.block-language-base .bases-header .bases-toolbar, +.bases-embed .bases-header .bases-toolbar { + padding-bottom: 2px; + opacity: var(--bases-toolbar-opacity); + transition: 0.15s 0.15s opacity; +} +.block-language-base .bases-header .bases-toolbar:hover, +.bases-embed .bases-header .bases-toolbar:hover { + opacity: 1; + transition: 0s opacity; +} + +.base-plain .bases-header { + display: none; +} + +.bases-table-header-icon { + display: var(--bases-table-header-icon-display); +} + +/* Editor mode (CodeMirror 6 Live Preview) */ +/* Fix strange Obsidian ghost textearea bug on right click */ +.CodeMirror-wrap > div > textarea { + opacity: 0; +} + +.cm-editor .cm-content { + padding-top: 0.5em; +} + +.markdown-source-view { + color: var(--text-normal); +} + +.markdown-source-view.mod-cm6 .cm-sizer { + display: block; +} + +.markdown-source-view.mod-cm6 .cm-scroller { + padding-inline-end: 0; + padding-inline-start: 0; +} + +.cm-s-obsidian .cm-line.HyperMD-header { + padding-top: calc(var(--p-spacing) / 2); +} + +.markdown-rendered .mod-header + div > * { + margin-block-start: 0; +} + +/* Gutters */ +body :not(.canvas-node) .markdown-source-view.mod-cm6 .cm-gutters { + position: absolute !important; + z-index: 0; + margin-inline-end: 0; +} +body :not(.canvas-node) .markdown-source-view.mod-cm6 .cm-gutters .cm-gutter:before { + content: ""; + height: 100%; + top: -100%; + width: 100%; + position: absolute; + z-index: 1; + background-color: var(--gutter-background); + min-width: var(--folding-offset); +} + +body :not(.canvas-node) .markdown-source-view.mod-cm6.is-rtl .cm-gutters { + right: 0; +} + +body { + --line-number-color: var(--text-faint); + --line-number-color-active: var(--text-muted); +} + +.empty-state-title { + display: none; +} + +.markdown-source-view.mod-cm6 .cm-gutters { + color: var(--line-number-color) !important; +} + +.markdown-source-view.mod-cm6 .cm-editor .cm-gutterElement.cm-active .cm-heading-marker, +.markdown-source-view.mod-cm6 .cm-editor .cm-lineNumbers .cm-gutterElement.cm-active { + color: var(--line-number-color-active); +} + +.cm-editor .cm-lineNumbers { + background-color: var(--gutter-background); +} + +.cm-editor .cm-lineNumbers .cm-gutterElement { + min-width: var(--folding-offset); + padding-inline-end: 0.5em; +} + +.is-rtl .cm-editor .cm-lineNumbers .cm-gutterElement { + text-align: left; +} + +/* Line numbers */ +@media (max-width: 400pt) { + .cm-editor .cm-lineNumbers .cm-gutterElement { + padding-inline-end: 4px; + padding-inline-start: 8px; + } +} +.cm-editor .cm-lineNumbers .cm-gutterElement.cm-active, +.cm-editor .cm-gutterElement.cm-active .cm-heading-marker { + color: var(--text-muted); +} + +/* Code execution blocks, e.g. Dataview */ +.markdown-source-view.mod-cm6 .edit-block-button { + color: var(--text-faint); + background-color: var(--background-primary); + top: 4px; + opacity: 0; + transition: opacity 200ms; +} + +.markdown-source-view.mod-cm6.is-live-preview.is-readable-line-width .cm-embed-block > .edit-block-button { + width: 30px !important; + padding-inline-start: 7px !important; +} + +.is-live-preview:not(.is-readable-line-width) .cm-embed-block > .edit-block-button { + padding-inline-start: 0px !important; + margin-inline-start: 0 !important; + padding: 4px; +} + +.markdown-source-view.mod-cm6 .edit-block-button:hover { + background-color: var(--background-primary); + color: var(--text-muted); +} + +.markdown-source-view.mod-cm6 .edit-block-button svg { + margin: 0 !important; + opacity: 1; +} + +.markdown-source-view.mod-cm6 .edit-block-button:hover svg { + opacity: 1; +} + +.markdown-source-view.mod-cm6 .cm-embed-block { + padding: 0; + border: 0; + border-radius: 0; +} + +.markdown-source-view.mod-cm6 .cm-embed-block:hover { + border: 0; +} + +.metadata-container { + --input-height: calc(var(--font-adaptive-small) * 2.2); +} + +body.metadata-heading-off .metadata-properties-heading { + display: none; +} + +.metadata-add-property-off .mod-root .metadata-add-button { + display: none; +} + +.metadata-dividers { + --metadata-divider-width: 1px; + --metadata-gap: 0px; +} + +.metadata-icons-off .workspace-leaf-content[data-type=all-properties] .tree-item-inner { + margin-inline-start: -16px; +} +.metadata-icons-off .workspace-leaf-content[data-type=all-properties] .tree-item-icon { + display: none; +} +.metadata-icons-off .metadata-property-icon { + display: none; +} + +/* Preview mode */ +figure { + margin-inline-start: 0; + margin-inline-end: 0; +} + +.markdown-preview-view .mod-highlighted { + transition: background-color 0.3s ease; + background-color: var(--text-selection); + color: inherit; +} + +.inline-title { + padding-top: 16px; +} + +/* Remove ribbon border on Mac when frameless */ +.mod-macos.hider-frameless .workspace-ribbon { + border: none; +} + +/* --------------- */ +/* App ribbon moved to the bottom edge */ +.is-tablet.hider-ribbon { + --ribbon-width: 0px; +} +.is-tablet.hider-ribbon .side-dock-ribbon { + display: none; +} + +.hider-ribbon .workspace-ribbon { + padding: 0; +} + +:root { + --hider-ribbon-display: none; + --ribbon-animation-duration: 0.1s; +} + +.ribbon-bottom-left-hover-vertical:not(.is-mobile), +.ribbon-bottom-left-hover:not(.is-mobile) { + --hider-ribbon-display: flex; +} + +body.ribbon-vertical-expand:not(.is-mobile) { + --ribbon-width: 0px; +} +body.ribbon-vertical-expand:not(.is-mobile) .workspace-ribbon.mod-left { + width: 10px; + flex-basis: 10px; + opacity: 0; + position: fixed; + height: 100%; + top: 0; + bottom: 0; + left: 0; + z-index: 10; + transition: all var(--ribbon-animation-duration) linear 0.6s; +} +body.ribbon-vertical-expand:not(.is-mobile) .workspace-ribbon.mod-left .side-dock-actions { + transition: opacity var(--ribbon-animation-duration) linear 0.3s; +} +body.ribbon-vertical-expand:not(.is-mobile) .workspace-ribbon.mod-left:hover { + width: 44px; + opacity: 1; + flex-basis: 44px; + transition: opacity var(--ribbon-animation-duration) linear 0.1s; +} +body.ribbon-vertical-expand:not(.is-mobile) .workspace-ribbon.mod-left:hover .side-dock-actions { + opacity: 1; + transition: opacity calc(var(--ribbon-animation-duration) * 2) linear 0.2s; +} +body.ribbon-vertical-expand:not(.is-mobile).labeled-nav .workspace-ribbon.mod-left ~ .mod-left-split .workspace-tab-header-container { + margin-left: 0; + transition: all var(--ribbon-animation-duration) linear 0.6s; +} +body.ribbon-vertical-expand:not(.is-mobile).labeled-nav .workspace-ribbon.mod-left:hover ~ .mod-left-split .workspace-tab-header-container { + margin-left: 44px; + transition: all var(--ribbon-animation-duration) linear; +} +body.ribbon-vertical-expand:not(.is-mobile) .workspace-ribbon.mod-left ~ .mod-left-split .workspace-tab-container { + padding-left: 0px; + transition: all var(--ribbon-animation-duration) linear 0.6s; +} +body.ribbon-vertical-expand:not(.is-mobile) .workspace-ribbon.mod-left ~ .mod-left-split .workspace-sidedock-vault-profile { + transition: all var(--ribbon-animation-duration) linear 0.6s; +} +body.ribbon-vertical-expand:not(.is-mobile) .workspace-ribbon.mod-left:hover ~ .mod-left-split .workspace-tab-container { + padding-left: 44px; + transition: all var(--ribbon-animation-duration) linear; +} +body.ribbon-vertical-expand:not(.is-mobile) .workspace-ribbon.mod-left:hover ~ .mod-left-split .workspace-sidedock-vault-profile { + padding-left: 52px; + transition: all var(--ribbon-animation-duration) linear; +} + +.hider-ribbon .workspace-ribbon.mod-left:before, +.ribbon-bottom-left-hover-vertical .workspace-ribbon.mod-left:before, +.ribbon-bottom-left-hover .workspace-ribbon.mod-left:before { + opacity: 0; +} +.hider-ribbon .workspace-ribbon-collapse-btn, +.ribbon-bottom-left-hover-vertical .workspace-ribbon-collapse-btn, +.ribbon-bottom-left-hover .workspace-ribbon-collapse-btn { + display: none; +} +.hider-ribbon .workspace-ribbon.mod-right, +.ribbon-bottom-left-hover-vertical .workspace-ribbon.mod-right, +.ribbon-bottom-left-hover .workspace-ribbon.mod-right { + pointer-events: none; +} +.hider-ribbon .workspace-ribbon.mod-left, +.ribbon-bottom-left-hover-vertical .workspace-ribbon.mod-left, +.ribbon-bottom-left-hover .workspace-ribbon.mod-left { + overflow: visible; + border-top: var(--border-width) solid var(--background-modifier-border) !important; + border-right: var(--border-width) solid var(--background-modifier-border) !important; + border-top-right-radius: var(--radius-m); + padding: 0; + position: absolute; + margin: 0; + width: auto; + height: 44px; + flex-basis: 0; + bottom: 0; + top: auto; + background: var(--background-secondary); + display: var(--hider-ribbon-display) !important; + flex-direction: row; + z-index: 17; + opacity: 0; + transition: opacity calc(var(--ribbon-animation-duration) * 2) ease-in-out; + filter: drop-shadow(2px 10px 30px rgba(0, 0, 0, 0.2)); + gap: 0; +} +.hider-ribbon .side-dock-actions, +.hider-ribbon .side-dock-settings, +.ribbon-bottom-left-hover-vertical .side-dock-actions, +.ribbon-bottom-left-hover-vertical .side-dock-settings, +.ribbon-bottom-left-hover .side-dock-actions, +.ribbon-bottom-left-hover .side-dock-settings { + flex-direction: row; + display: var(--hider-ribbon-display); + background: transparent; + margin: 0; + position: relative; + gap: var(--size-2-2); +} +.hider-ribbon .side-dock-actions, +.ribbon-bottom-left-hover-vertical .side-dock-actions, +.ribbon-bottom-left-hover .side-dock-actions { + padding: 6px 6px 6px 8px; +} +.hider-ribbon .side-dock-settings:empty, +.ribbon-bottom-left-hover-vertical .side-dock-settings:empty, +.ribbon-bottom-left-hover .side-dock-settings:empty { + display: none; +} +.hider-ribbon .workspace-ribbon.mod-left .side-dock-ribbon-action, +.ribbon-bottom-left-hover-vertical .workspace-ribbon.mod-left .side-dock-ribbon-action, +.ribbon-bottom-left-hover .workspace-ribbon.mod-left .side-dock-ribbon-action { + display: var(--hider-ribbon-display); +} +.hider-ribbon .workspace-ribbon.mod-left:hover, +.ribbon-bottom-left-hover-vertical .workspace-ribbon.mod-left:hover, +.ribbon-bottom-left-hover .workspace-ribbon.mod-left:hover { + opacity: 1; + transition: opacity 0.25s ease-in-out; +} +.hider-ribbon .workspace-ribbon.mod-left .workspace-ribbon-collapse-btn, +.ribbon-bottom-left-hover-vertical .workspace-ribbon.mod-left .workspace-ribbon-collapse-btn, +.ribbon-bottom-left-hover .workspace-ribbon.mod-left .workspace-ribbon-collapse-btn { + opacity: 0; +} +.hider-ribbon .workspace-split.mod-left-split, +.ribbon-bottom-left-hover-vertical .workspace-split.mod-left-split, +.ribbon-bottom-left-hover .workspace-split.mod-left-split { + margin: 0; +} +.hider-ribbon .workspace-leaf-content .item-list, +.ribbon-bottom-left-hover-vertical .workspace-leaf-content .item-list, +.ribbon-bottom-left-hover .workspace-leaf-content .item-list { + padding-bottom: 40px; +} + +.ribbon-bottom-left-hover-vertical .workspace-ribbon.mod-left { + height: auto; +} +.ribbon-bottom-left-hover-vertical .side-dock-actions { + flex-direction: column; + padding: 8px 6px; +} + +/* Status bar */ +.minimal-status-off .status-bar { + --status-bar-position: static; + --status-bar-radius: 0; + --status-bar-border-width: 1px 0 0 0; + --status-bar-background: var(--background-secondary); + --status-bar-border-color: var(--ui1); +} + +body:not(.minimal-status-off) .status-bar { + background-color: var(--background-primary); + --status-bar-border-width: 0; +} + +.status-bar { + transition: color 200ms linear; + color: var(--text-faint); + font-size: var(--font-adaptive-smallest); +} +.status-bar .sync-status-icon.mod-working, +.status-bar .sync-status-icon.mod-success { + color: var(--text-faint); +} +.status-bar:hover .sync-status-icon.mod-working, .status-bar:hover .sync-status-icon.mod-success, .status-bar:hover { + color: var(--text-muted); + transition: color 200ms linear; +} +.status-bar .plugin-sync:hover .sync-status-icon.mod-working, +.status-bar .plugin-sync:hover .sync-status-icon.mod-success { + color: var(--text-normal); +} +.status-bar .status-bar-item { + cursor: var(--cursor) !important; +} +.status-bar .status-bar-item.plugin-editor-status:hover, .status-bar .status-bar-item.plugin-sync:hover, .status-bar .status-bar-item.cMenu-statusbar-button:hover, .status-bar .status-bar-item.mod-clickable:hover { + text-align: center; + background-color: var(--background-modifier-hover) !important; +} + +.tab-stack-top-flipped { + --tab-stacked-text-transform: rotate(180deg); + --tab-stacked-text-align: right; +} + +.tab-stack-center { + --tab-stacked-text-align: center; +} + +.tab-stack-center-flipped { + --tab-stacked-text-transform: rotate(180deg); + --tab-stacked-text-align: center; +} + +.tab-stack-bottom { + --tab-stacked-text-transform: rotate(180deg); +} + +.tab-stack-bottom-flipped { + --tab-stacked-text-align: right; +} + +.workspace .mod-root .workspace-tabs.mod-stacked .workspace-tab-container .workspace-tab-header-inner { + flex-direction: var(--tab-stacked-spine-order); +} + +/* Title Bar */ +.view-header-title-parent, +.view-header-title { + text-overflow: ellipsis; +} + +.view-header-title-container:not(.mod-at-end):after { + display: none; +} + +/* Alignment */ +body:not(.is-mobile) .view-actions .view-action:last-child { + margin-left: -1px; +} + +body:not(.minimal-focus-mode) .workspace-ribbon:not(.is-collapsed) ~ .mod-root .view-actions, +.minimal-focus-mode .workspace-ribbon:not(.is-collapsed) ~ .mod-root .view-header:hover .view-actions, +.workspace-ribbon.mod-left.is-collapsed ~ .mod-root .view-header:hover .view-actions, +.mod-right.is-collapsed ~ .mod-root .view-header:hover .view-actions, +.view-action.is-active:hover { + opacity: 1; + transition: opacity 0.25s ease-in-out; +} + +.view-header-title-container { + opacity: 0; + transition: opacity 0.1s ease-in-out; +} + +.view-header-title-container:focus-within { + opacity: 1; + transition: opacity 0.1s ease-in-out; +} + +.workspace-tab-header-container:hover + .workspace-tab-container .view-header-title-container, +.view-header:hover .view-header-title-container { + opacity: 1; + transition: opacity 0.1s ease-in-out; +} + +.is-phone .view-header-title-container, +.minimal-tab-title-visible .view-header-title-container { + opacity: 1; +} + +.minimal-tab-title-hidden .view-header-title-container { + opacity: 0; +} +.minimal-tab-title-hidden .view-header-title-container:focus-within { + opacity: 1; + transition: opacity 0.1s ease-in-out; +} +.minimal-tab-title-hidden .workspace-tab-header-container:hover + .workspace-tab-container .view-header-title-container, +.minimal-tab-title-hidden .view-header:hover .view-header-title-container { + opacity: 0; +} + +/* Window frame */ +body.window-title-off .titlebar-text { + display: none; +} + +.titlebar-button-container.mod-right { + background-color: transparent !important; +} + +.is-hidden-frameless.theme-dark:not(.minimal-dark-black):not(.colorful-frame), +.is-hidden-frameless.theme-light:not(.minimal-light-tonal):not(.colorful-frame):not(.minimal-light-white) { + --titlebar-background: var(--bg1); +} +.is-hidden-frameless.theme-dark:not(.minimal-dark-black):not(.colorful-frame).is-focused .sidebar-toggle-button.mod-right, +.is-hidden-frameless.theme-dark:not(.minimal-dark-black):not(.colorful-frame).is-focused .workspace-ribbon.mod-left.is-collapsed, +.is-hidden-frameless.theme-dark:not(.minimal-dark-black):not(.colorful-frame).is-focused .workspace-tabs.mod-top, +.is-hidden-frameless.theme-light:not(.minimal-light-tonal):not(.colorful-frame):not(.minimal-light-white).is-focused .sidebar-toggle-button.mod-right, +.is-hidden-frameless.theme-light:not(.minimal-light-tonal):not(.colorful-frame):not(.minimal-light-white).is-focused .workspace-ribbon.mod-left.is-collapsed, +.is-hidden-frameless.theme-light:not(.minimal-light-tonal):not(.colorful-frame):not(.minimal-light-white).is-focused .workspace-tabs.mod-top { + --titlebar-background-focused: var(--bg1); +} +.is-hidden-frameless.theme-dark:not(.minimal-dark-black):not(.colorful-frame):not(.minimal-dark-tonal):not(.minimal-light-white) .workspace-ribbon.mod-left:not(.is-collapsed), +.is-hidden-frameless.theme-light:not(.minimal-light-tonal):not(.colorful-frame):not(.minimal-light-white):not(.minimal-dark-tonal):not(.minimal-light-white) .workspace-ribbon.mod-left:not(.is-collapsed) { + --titlebar-background: var(--bg2); +} + +/* Trying for a smoother animation */ +.mod-macos.is-hidden-frameless:not(.is-popout-window) .sidebar-toggle-button.mod-right { + right: 0; + padding-right: var(--size-4-2); +} + +body.is-focused { + --titlebar-background-focused: var(--background-secondary); +} + +.is-hidden-frameless:not(.colorful-frame) .mod-left-split .mod-top .workspace-tab-header-container { + --tab-container-background: var(--background-secondary); +} + +.mod-root .workspace-tab-header-status-icon { + color: var(--text-muted); +} + +.is-collapsed .workspace-sidedock-vault-profile { + opacity: 0; +} + +body:not(.is-mobile).hide-help .workspace-drawer-vault-actions .clickable-icon:first-child { + display: none; +} + +body:not(.is-mobile).hide-settings .workspace-drawer-vault-actions .clickable-icon:last-child { + display: none; +} + +body:not(.is-mobile).hide-help.hide-settings .workspace-drawer-vault-actions { + display: none !important; +} + +body:not(.is-grabbing):not(.is-fullscreen).labeled-nav.is-hidden-frameless.vault-profile-top .mod-left-split .mod-top .workspace-tab-header-container { + -webkit-app-region: no-drag; +} +body:not(.is-grabbing):not(.is-fullscreen).labeled-nav.is-hidden-frameless.vault-profile-top .mod-left-split .mod-top .workspace-tab-header-container:before { + position: absolute; + top: 0; + content: ""; + height: var(--header-height); + width: 100%; + -webkit-app-region: drag; +} + +body:not(.is-mobile):not(.labeled-nav).vault-profile-top .workspace-split.mod-left-split .mod-top .workspace-tab-container { + margin-top: calc(var(--header-height) + 8px); +} +body:not(.is-mobile):not(.labeled-nav).vault-profile-top .workspace-split.mod-left-split .workspace-sidedock-vault-profile { + -webkit-app-region: no-drag; + position: absolute; + top: var(--header-height); + z-index: 6; + width: 100%; + border-top: 0; + border-bottom: 1px solid var(--background-modifier-border); +} +body:not(.is-mobile):not(.labeled-nav).vault-profile-top .workspace-split.mod-left-split .workspace-sidedock-vault-profile .workspace-drawer-vault-switcher { + padding-left: var(--size-4-2); +} + +body:not(.is-mobile).labeled-nav.vault-profile-top .workspace-split.mod-left-split .workspace-sidedock-vault-profile { + -webkit-app-region: no-drag; + position: absolute; + top: var(--labeled-nav-top-margin); + z-index: 6; + width: 100%; + background-color: transparent; + border-top: 0; + border-bottom: 1px solid var(--background-modifier-border); +} +body:not(.is-mobile).labeled-nav.vault-profile-top .workspace-split.mod-left-split .workspace-sidedock-vault-profile .workspace-drawer-vault-switcher { + padding-left: var(--size-4-2); +} + +.vault-profile-top .workspace-tab-header-container-inner { + --labeled-nav-top-margin: 84px; +} + +/* Components */ +.document-search, .document-replace { + max-width: 100%; + padding: 0; +} + +.document-search-container { + margin: 0 auto; + max-width: var(--max-width); + width: var(--line-width); +} + +/* Modals */ +.modal-button-container .mod-checkbox { + --checkbox-radius: 4px; +} + +/* Confirm delete */ +.modal-container.mod-confirmation .modal { + width: 480px; + min-width: 0; +} + +/* Hide settings descriptions */ +.hide-settings-desc.is-phone .setting-item { + padding: 0.65em 0; +} +.hide-settings-desc.is-phone .setting-item-name { + font-weight: 400; + font-size: 16px; +} +.hide-settings-desc .setting-item-name { + transition: max-height 200ms ease-in-out, padding-top 200ms ease-in-out; +} +.hide-settings-desc .setting-item-name:active + .setting-item-description { + opacity: 1; + max-height: 500px; + padding-top: 4px; + transition: opacity 100ms ease-out, max-height 200ms ease-out, padding-top 200ms ease-in-out; +} +.hide-settings-desc .setting-item-description { + opacity: 0; + max-height: 0; + padding-top: 0; + transition: max-height 200ms ease-in-out, padding-top 200ms ease-in-out; +} + +.popover { + --file-margins: var(--size-4-6) var(--size-4-6) var(--size-4-6); +} + +.minimal-line-nums .popover .markdown-source-view { + --file-margins: var(--size-4-4) var(--size-4-6) var(--size-4-6) var(--size-4-12); +} +.minimal-line-nums .popover .markdown-source-view.is-rtl { + --file-margins: var(--size-4-4) var(--size-4-12) var(--size-4-6) var(--size-4-6); +} + +/* Progress bars */ +body { + --progress-outline: var(--background-modifier-border); + --progress-complete: var(--text-accent); +} + +.markdown-rendered progress, +.markdown-source-view.is-live-preview progress, +.markdown-preview-view progress { + width: 220px; +} +.markdown-rendered progress[value]::-webkit-progress-bar, +.markdown-source-view.is-live-preview progress[value]::-webkit-progress-bar, +.markdown-preview-view progress[value]::-webkit-progress-bar { + box-shadow: inset 0px 0px 0px var(--border-width) var(--progress-outline); +} +.markdown-rendered progress[value^="1"]::-webkit-progress-value, .markdown-rendered progress[value^="2"]::-webkit-progress-value, .markdown-rendered progress[value^="3"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value^="1"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value^="2"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value^="3"]::-webkit-progress-value, +.markdown-preview-view progress[value^="1"]::-webkit-progress-value, +.markdown-preview-view progress[value^="2"]::-webkit-progress-value, +.markdown-preview-view progress[value^="3"]::-webkit-progress-value { + background-color: var(--color-red); +} +.markdown-rendered progress[value^="4"]::-webkit-progress-value, .markdown-rendered progress[value^="5"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value^="4"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value^="5"]::-webkit-progress-value, +.markdown-preview-view progress[value^="4"]::-webkit-progress-value, +.markdown-preview-view progress[value^="5"]::-webkit-progress-value { + background-color: var(--color-orange); +} +.markdown-rendered progress[value^="6"]::-webkit-progress-value, .markdown-rendered progress[value^="7"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value^="6"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value^="7"]::-webkit-progress-value, +.markdown-preview-view progress[value^="6"]::-webkit-progress-value, +.markdown-preview-view progress[value^="7"]::-webkit-progress-value { + background-color: var(--color-yellow); +} +.markdown-rendered progress[value^="8"]::-webkit-progress-value, .markdown-rendered progress[value^="9"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value^="8"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value^="9"]::-webkit-progress-value, +.markdown-preview-view progress[value^="8"]::-webkit-progress-value, +.markdown-preview-view progress[value^="9"]::-webkit-progress-value { + background-color: var(--color-green); +} +.markdown-rendered progress[value="1"]::-webkit-progress-value, .markdown-rendered progress[value="100"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value="1"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value="100"]::-webkit-progress-value, +.markdown-preview-view progress[value="1"]::-webkit-progress-value, +.markdown-preview-view progress[value="100"]::-webkit-progress-value { + background-color: var(--progress-complete); +} +.markdown-rendered progress[value="0"]::-webkit-progress-value, .markdown-rendered progress[value="2"]::-webkit-progress-value, .markdown-rendered progress[value="3"]::-webkit-progress-value, .markdown-rendered progress[value="4"]::-webkit-progress-value, .markdown-rendered progress[value="5"]::-webkit-progress-value, .markdown-rendered progress[value="6"]::-webkit-progress-value, .markdown-rendered progress[value="7"]::-webkit-progress-value, .markdown-rendered progress[value="8"]::-webkit-progress-value, .markdown-rendered progress[value="9"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value="0"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value="2"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value="3"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value="4"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value="5"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value="6"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value="7"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value="8"]::-webkit-progress-value, +.markdown-source-view.is-live-preview progress[value="9"]::-webkit-progress-value, +.markdown-preview-view progress[value="0"]::-webkit-progress-value, +.markdown-preview-view progress[value="2"]::-webkit-progress-value, +.markdown-preview-view progress[value="3"]::-webkit-progress-value, +.markdown-preview-view progress[value="4"]::-webkit-progress-value, +.markdown-preview-view progress[value="5"]::-webkit-progress-value, +.markdown-preview-view progress[value="6"]::-webkit-progress-value, +.markdown-preview-view progress[value="7"]::-webkit-progress-value, +.markdown-preview-view progress[value="8"]::-webkit-progress-value, +.markdown-preview-view progress[value="9"]::-webkit-progress-value { + background-color: var(--color-red); +} + +/* Tooltips */ +.tooltip { + transition: none; + animation: none; +} + +.tooltip.mod-left, +.tooltip.mod-right { + animation: none; +} + +.tooltip.mod-error { + color: var(--text-error); +} + +/* Content */ +/* Blockquotes */ +.markdown-preview-view blockquote { + padding-inline-start: var(--nested-padding); + font-size: var(--blockquote-size); +} + +.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote, +.markdown-source-view.mod-cm6 .HyperMD-quote { + font-size: var(--blockquote-size); +} + +.is-live-preview .cm-hmd-indent-in-quote { + color: var(--text-faint); +} + +/* Callouts */ +.is-live-preview.is-readable-line-width > .cm-callout .callout { + max-width: var(--max-width); + margin: 0 auto; +} + +.callouts-outlined .callout .callout-title { + background-color: var(--background-primary); + margin-top: -24px; + z-index: 200; + width: fit-content; + padding: 0 0.5em; + margin-left: -0.75em; + letter-spacing: 0.05em; + font-variant-caps: all-small-caps; +} +.callouts-outlined .callout { + overflow: visible; + --callout-border-width: 1px; + --callout-border-opacity: 0.5; + --callout-title-size: 0.8em; + --callout-blend-mode: normal; + background-color: transparent; +} +.callouts-outlined .cm-embed-block.cm-callout { + padding-top: 12px; +} +.callouts-outlined .callout-content .callout { + margin-top: 18px; +} + +/* Checklists, task lists, checkboxes */ +body { + --checkbox-radius: 50%; + --checkbox-top: 2px; + --checkbox-left: 0px; + --checkbox-margin: 0px 6px 0px -2em; +} + +.checkbox-square { + --checkbox-size: calc(var(--font-text-size) * 0.85); + --checkbox-radius: 4px; + --checkbox-top: 1px; + --checkbox-left: 0px; + --checkbox-margin: 0px 8px 0px -2em; +} + +body.minimal-strike-lists { + --checklist-done-decoration: line-through; +} + +body:not(.minimal-strike-lists) { + --checklist-done-decoration: none; + --checklist-done-color: var(--text-normal); +} + +.markdown-preview-section > .contains-task-list { + padding-bottom: 0.5em; +} + +.mod-cm6 .HyperMD-task-line[data-task] .cm-formatting-list-ol ~ .task-list-label .task-list-item-checkbox { + margin: 1px; +} + +.markdown-preview-view .task-list-item-checkbox { + position: relative; + top: var(--checkbox-top); + left: var(--checkbox-left); +} + +.markdown-preview-view ul > li.task-list-item { + text-indent: 0; +} + +.minimal-code-scroll { + --code-white-space: pre; +} +.minimal-code-scroll .HyperMD-codeblock.HyperMD-codeblock-bg { + overflow-y: scroll; + white-space: pre; +} +.minimal-code-scroll .cm-hmd-codeblock { + white-space: pre !important; +} + +@media print { + .print { + --code-background: #eeeeee !important; + } +} +/* Transcluded notes and embeds */ +body { + --embed-max-height: none; + --embed-decoration-style: solid; + --embed-decoration-color: var(--background-modifier-border-hover); +} + +/* Strict embeds (naked) */ +.embed-strict { + --embed-background: transparent; + --embed-border-start: 0; + --embed-border-left: 0; + --embed-padding: 0; +} +.embed-strict .markdown-embed-content { + --folding-offset: 0px; +} +.embed-strict .internal-embed .markdown-embed, +.embed-strict .markdown-preview-view .markdown-embed, .embed-strict.markdown-preview-view .markdown-embed { + padding: 0; +} +.embed-strict .markdown-embed-title, +.embed-strict .internal-embed .markdown-embed .markdown-embed-title { + display: none; +} +.embed-strict .internal-embed:not([src*="#^"]) .markdown-embed-link { + width: 24px; + opacity: 0; +} + +.embed-underline .internal-embed:not(.pdf-embed, .bases-embed) { + text-decoration-line: underline; + text-decoration-style: var(--embed-decoration-style); + text-decoration-color: var(--embed-decoration-color); +} + +.embed-hide-title .markdown-embed-title { + display: none; +} + +.embed-strict.contextual-typography .internal-embed .markdown-preview-view .markdown-preview-sizer > div, +.contextual-typography .embed-strict .internal-embed .markdown-preview-view .markdown-preview-sizer > div { + margin: 0; + width: 100%; +} + +.markdown-embed .markdown-preview-view .markdown-preview-sizer { + padding-bottom: 0 !important; +} + +.markdown-preview-view.markdown-embed .markdown-preview-sizer, +.markdown-preview-view.is-readable-line-width .markdown-embed .markdown-preview-sizer { + max-width: 100%; + width: 100%; + min-height: 0 !important; + padding-bottom: 0 !important; +} + +.markdown-embed .markdown-preview-section div:last-child p, +.markdown-embed .markdown-preview-section div:last-child ul { + margin-block-end: 2px; +} + +.markdown-preview-view .markdown-embed { + margin-top: var(--nested-padding); + padding: 0 calc(var(--nested-padding) / 2) 0 var(--nested-padding); +} + +.internal-embed:not([src*="#^"]) .markdown-embed-link { + right: 0; + width: 100%; +} + +.markdown-embed-link, +.file-embed-link { + top: 0px; + right: 0; + text-align: right; + justify-content: flex-end; +} + +.file-embed-link svg, +.markdown-embed-link svg { + width: 16px; + height: 16px; +} + +.markdown-embed .file-embed-link, +.markdown-embed .markdown-embed-link { + opacity: 0.6; + transition: opacity 0.1s linear; +} + +.markdown-embed .file-embed-link:hover, +.markdown-embed .markdown-embed-link:hover { + opacity: 1; +} +.markdown-embed .file-embed-link:hover:hover, +.markdown-embed .markdown-embed-link:hover:hover { + background-color: transparent; + --icon-color: var(--text-accent); +} + +.markdown-embed-link:hover, .file-embed-link:hover { + color: var(--text-muted); +} + +.markdown-embed .markdown-preview-view { + padding: 0; +} + +.internal-embed .markdown-embed { + border: 0; + border-left: 1px solid var(--quote-opening-modifier); + border-radius: 0; +} + +/* Links */ +a[href*="obsidian://search"] { + background-image: url("data:image/svg+xml,"); +} + +.theme-dark a[href*="obsidian://search"] { + background-image: url("data:image/svg+xml,"); +} + +.plain-external-links .external-link { + background-image: none; + padding-right: 0; +} + +body { + --adaptive-list-edit-offset: var(--list-edit-offset); +} + +.is-rtl { + --adaptive-list-edit-offset: calc(var(--list-edit-offset)*-1); +} + +/* Space between list items */ +.markdown-source-view ol > li, +.markdown-source-view ul > li, +.markdown-preview-view ol > li, +.markdown-preview-view ul > li, +.mod-cm6 .HyperMD-list-line.cm-line { + padding-top: var(--list-spacing); + padding-bottom: var(--list-spacing); +} + +.is-mobile ul > li:not(.task-list-item)::marker { + font-size: 0.8em; +} + +/* Backlinks in Preview */ +.is-mobile .workspace-leaf-content:not([data-type=search]) .workspace-leaf-content[data-type=markdown] .nav-buttons-container { + border-bottom: none; + padding-top: 5px; +} + +.is-mobile .mod-root .workspace-leaf-content[data-type=markdown] .search-input-container { + width: calc(100% - 160px); +} + +.embedded-backlinks .backlink-pane > .tree-item-self:hover, +.embedded-backlinks .backlink-pane > .tree-item-self { + text-transform: none; + color: var(--text-normal); + font-size: var(--font-adaptive-normal); + font-weight: 500; + letter-spacing: unset; +} + +body { + --pdf-dark-opacity: 1; +} + +.theme-light:not(.pdf-shadows-on), +.theme-dark:not(.pdf-shadows-on) { + --pdf-shadow: none; + --pdf-thumbnail-shadow: none; +} +.theme-light:not(.pdf-shadows-on) .pdf-viewer .page, +.theme-light:not(.pdf-shadows-on) .pdfViewer .page, +.theme-dark:not(.pdf-shadows-on) .pdf-viewer .page, +.theme-dark:not(.pdf-shadows-on) .pdfViewer .page { + border: 0; +} +.theme-light:not(.pdf-shadows-on) .pdf-sidebar-container .thumbnailSelectionRing, +.theme-dark:not(.pdf-shadows-on) .pdf-sidebar-container .thumbnailSelectionRing { + padding: 0; +} +.theme-light:not(.pdf-shadows-on) .pdf-sidebar-container .thumbnail::after, +.theme-dark:not(.pdf-shadows-on) .pdf-sidebar-container .thumbnail::after { + right: var(--size-4-2); + bottom: var(--size-4-2); +} + +.theme-dark { + --pdf-thumbnail-shadow: 0 0 1px 0 rgba(0,0,0,0.6); + --pdf-shadow: 0 0 1px 0 rgba(0,0,0,0.6); +} +.theme-dark .pdf-viewer .canvasWrapper, +.theme-dark .pdfViewer .canvasWrapper { + opacity: var(--pdf-dark-opacity); +} +.theme-dark.pdf-invert-dark .workspace-leaf-content[data-type=pdf] .pdf-viewer .canvasWrapper, +.theme-dark.pdf-invert-dark .workspace-leaf-content[data-type=pdf] .pdfViewer .canvasWrapper { + filter: invert(1) hue-rotate(180deg); + mix-blend-mode: screen; +} + +.theme-light.pdf-blend-light .workspace-leaf-content[data-type=pdf] .pdf-viewer .canvasWrapper, +.theme-light.pdf-blend-light .workspace-leaf-content[data-type=pdf] .pdfViewer .canvasWrapper { + mix-blend-mode: multiply; +} + +body { + --table-header-border-width: 0; + --table-column-first-border-width: 0; + --table-column-last-border-width: 0; + --table-row-last-border-width: 0; + --table-edge-cell-padding-first: 0; + --table-edge-cell-padding-last: 0; + --table-cell-padding: 4px 10px; + --table-header-size: var(--table-text-size); +} + +/* Preview mode tables */ +.markdown-source-view.mod-cm6 table { + border-collapse: collapse; +} + +.markdown-rendered th { + --table-header-size: var(--table-text-size); +} + +.markdown-source-view.mod-cm6 table, +.markdown-preview-view table { + border: var(--border-width) solid var(--border-color); + border-collapse: collapse; +} +.markdown-source-view.mod-cm6 td, .markdown-source-view.mod-cm6 th, +.markdown-preview-view td, +.markdown-preview-view th { + padding: var(--table-cell-padding); +} +.markdown-source-view.mod-cm6 td:first-child, .markdown-source-view.mod-cm6 th:first-child, +.markdown-preview-view td:first-child, +.markdown-preview-view th:first-child { + padding-inline-start: var(--table-edge-cell-padding-first); +} +.markdown-source-view.mod-cm6 td:first-child .table-cell-wrapper, .markdown-source-view.mod-cm6 th:first-child .table-cell-wrapper, +.markdown-preview-view td:first-child .table-cell-wrapper, +.markdown-preview-view th:first-child .table-cell-wrapper { + padding-inline-start: 0; +} +.markdown-source-view.mod-cm6 td:last-child, .markdown-source-view.mod-cm6 th:last-child, +.markdown-preview-view td:last-child, +.markdown-preview-view th:last-child { + padding-inline-end: var(--table-edge-cell-padding-last); +} +.markdown-source-view.mod-cm6 td:last-child .table-cell-wrapper, .markdown-source-view.mod-cm6 th:last-child .table-cell-wrapper, +.markdown-preview-view td:last-child .table-cell-wrapper, +.markdown-preview-view th:last-child .table-cell-wrapper { + padding-inline-end: 0; +} + +.markdown-source-view.mod-cm6 .cm-table-widget table { + margin-top: 0; +} +.markdown-source-view.mod-cm6 .cm-table-widget .table-cell-wrapper { + padding: var(--table-cell-padding); +} + +.markdown-reading-view table { + --p-spacing: 0.5rem; +} + +.cm-embed-block.cm-table-widget.markdown-rendered { + padding: var(--table-drag-padding); + overscroll-behavior-x: none; +} +.is-mobile .cm-embed-block.cm-table-widget.markdown-rendered { + padding-bottom: 40px; +} + +/* Override Sortable plugin */ +.markdown-preview-view th, +.table-view-table > thead > tr > th, +.markdown-source-view.mod-cm6 .dataview.table-view-table thead.table-view-thead tr th { + padding: var(--table-cell-padding); +} +.markdown-preview-view th:first-child, +.table-view-table > thead > tr > th:first-child, +.markdown-source-view.mod-cm6 .dataview.table-view-table thead.table-view-thead tr th:first-child { + padding-inline-start: var(--table-edge-cell-padding-first); +} +.markdown-preview-view th:last-child, +.table-view-table > thead > tr > th:last-child, +.markdown-source-view.mod-cm6 .dataview.table-view-table thead.table-view-thead tr th:last-child { + padding-inline-end: var(--table-edge-cell-padding-last); +} + +/* Live Preview Tables */ +.cm-s-obsidian .HyperMD-table-row span.cm-hmd-table-sep, +.cm-hmd-table-sep-dummy { + color: var(--text-faint); + font-weight: 400; +} + +/* Tags */ +body.minimal-unstyled-tags { + --tag-background: transparent; + --tag-background-hover: transparent; + --tag-border-width: 0px; + --tag-padding-x: 0; + --tag-padding-y: 0; + --tag-size: inherit; + --tag-color-hover: var(--text-accent-hover); +} +body.minimal-unstyled-tags.is-mobile.theme-dark { + --tag-background: transparent; +} + +body:not(.minimal-unstyled-tags) { + --tag-size: 0.8em; + --tag-padding-y: 0.2em; + --tag-background: transparent; + --tag-background-hover: transparent; + --tag-color: var(--text-muted); + --tag-border-width: 1px; + --tag-border-color: var(--background-modifier-border); + --tag-border-color-hover: var(--background-modifier-border-hover); + --tag-color-hover: var(--text-normal); +} + +body.is-mobile.theme-dark { + --tag-background: transparent; +} + +/* Headings and fonts */ +h1, h2, h3, h4 { + letter-spacing: -0.02em; +} + +body, input, button { + font-family: var(--font-interface); +} + +.cm-s-obsidian span.cm-error { + color: var(--color-red); +} + +.markdown-preview-view, +.popover, +.workspace-leaf-content[data-type=markdown] { + font-family: var(--font-text); +} + +body, +.markdown-preview-view, +.view-content > .markdown-source-view.mod-cm6.is-live-preview > .cm-scroller, +.view-content > .cm-s-obsidian { + font-size: var(--font-adaptive-normal); + font-weight: var(--normal-weight); +} + +.view-content > .markdown-source-view.mod-cm6 .cm-scroller, +.view-content > .markdown-source-view, +.view-content > .cm-s-obsidian { + font-family: var(--font-editor); +} + +.cm-formatting:not(.cm-formatting-code-block):not(.cm-formatting-hashtag) { + color: var(--text-formatting); +} + +.hide-markdown .is-live-preview .cm-formatting.cm-formatting-code.cm-inline-code, .hide-markdown .is-live-preview .cm-formatting.cm-formatting-em, .hide-markdown .is-live-preview .cm-formatting.cm-formatting-link, .hide-markdown .is-live-preview .cm-formatting.cm-formatting-strikethrough, .hide-markdown .is-live-preview .cm-formatting.cm-formatting-strong, .hide-markdown .is-live-preview .cm-formatting.cm-formatting-highlight { + display: none; +} +.hide-markdown .is-live-preview .cm-formatting-quote { + opacity: 0; +} +.hide-markdown .is-live-preview .cm-hmd-internal-link.cm-link-has-alias, +.hide-markdown .is-live-preview .cm-link-alias-pipe, +.hide-markdown .is-live-preview .cm-formatting-link, +.hide-markdown .is-live-preview .cm-formatting-header { + display: none; +} + +/* Minimal features */ +/* Active line highlight */ +.active-line-on .workspace-leaf-content[data-type=markdown] .cm-line.cm-active, +.active-line-on .workspace-leaf-content[data-type=markdown] .markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote.cm-active { + background-color: var(--active-line-bg); + box-shadow: -25vw 0px var(--active-line-bg), 25vw 0 var(--active-line-bg); +} + +.disable-animations { + --ribbon-animation-duration: 0ms; + --focus-animation-duration: 0ms; +} +.disable-animations .mod-sidedock { + transition-duration: 0ms !important; +} + +.fast-animations { + --ribbon-animation-duration: 0.05s; + --focus-animation-duration: 0.05s; +} +.fast-animations .mod-sidedock { + transition-duration: 70ms !important; +} + +body { + --content-margin: auto; + --content-margin-start: max( + calc(50% - var(--line-width)/2), + calc(50% - var(--max-width)/2) ); + --content-line-width: min(var(--line-width), var(--max-width)); + --map-header-padding: 2px; +} + +/* Line widths ------------------------------------ */ +/* Set overall context to 100% width */ +.markdown-preview-view .markdown-preview-sizer.markdown-preview-sizer { + max-width: 100%; + margin-inline: auto; + width: 100%; +} + +/* Prevent x overflow when line numbers are on +.markdown-source-view.mod-cm6 .cm-sizer { + overflow-x: hidden; +} */ +.markdown-source-view.mod-cm6.is-readable-line-width .cm-content, +.markdown-source-view.mod-cm6.is-readable-line-width .cm-sizer { + max-width: 100%; + width: 100%; +} + +/* Set inner content to line width */ +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer > div, +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content > div, +.markdown-source-view.mod-cm6.is-readable-line-width .cm-sizer > .inline-title, +.markdown-source-view.mod-cm6.is-readable-line-width .cm-sizer > .embedded-backlinks, +.markdown-source-view.mod-cm6.is-readable-line-width .cm-sizer > .metadata-container { + max-width: var(--max-width); + width: var(--line-width); + margin-inline: var(--content-margin) !important; +} + +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content > *:not(div) { + max-width: var(--content-line-width); + margin-inline-start: var(--content-margin-start) !important; +} + +/* File margins ------------------------------------ */ +.is-readable-line-width { + --file-margins: 1rem 0 0 0; +} + +.is-mobile .markdown-preview-view { + --folding-offset: 0; +} + +/* With line numbers */ +.minimal-line-nums .workspace-leaf-content[data-type=markdown] { + --file-margins: var(--size-4-8) var(--size-4-8) var(--size-4-8) 48px; +} +.minimal-line-nums .workspace-leaf-content[data-type=markdown].is-rtl { + --file-margins: var(--size-4-8) 48px var(--size-4-8) var(--size-4-8); +} +.minimal-line-nums .workspace-leaf-content[data-type=markdown] .is-readable-line-width { + --file-margins: 1rem 0 0 var(--folding-offset); +} +.minimal-line-nums .workspace-leaf-content[data-type=markdown] .is-readable-line-width.is-rtl { + --file-margins: 1rem var(--folding-offset) 0 0; +} + +.minimal-line-nums .mod-right-split .markdown-preview-view, +.minimal-line-nums .mod-right-split .markdown-source-view.mod-cm6 .cm-scroller, +.minimal-line-nums .mod-left-split .markdown-preview-view, +.minimal-line-nums .mod-left-split .markdown-source-view.mod-cm6 .cm-scroller { + --file-margins: var(--size-4-5) var(--size-4-5) var(--size-4-5) 48px; +} + +.view-content .reader-mode-content.is-readable-line-width .markdown-preview-sizer { + max-width: var(--max-width); + width: var(--line-width); +} + +/* Embeds ------------------------------------ */ +.markdown-preview-view .inline-embed { + --max-width: 100%; +} + +/* Content rules ------------------------------------ + + The benefit of this approach is that it covers all levels + of specificity wherever the helper is applied: global, + per file, and element-level. + + It means we don't have to write long specific selectors + like `.table-100.markdown-source-view...` +*/ +body { + --container-table-max-width: var(--max-width); + --table-max-width: none; + --table-width: auto; + --table-margin: inherit; + --table-wrapper-width: fit-content; + --container-dataview-table-width: var(--line-width); + --container-img-width: var(--line-width); + --container-img-max-width: var(--max-width); + --img-max-width: 100%; + --img-width: auto; + /* because external images don't have a container */ + --img-margin-start: var(--content-margin-start); + --img-line-width: var(--content-line-width); + --container-chart-width: var(--line-width); + --container-chart-max-width: var(--max-width); + --chart-max-width: none; + --chart-width: auto; + --container-map-width: var(--line-width); + --container-map-max-width: var(--max-width); + --map-max-width: none; + --map-width: auto; + --container-iframe-width: var(--line-width); + --container-iframe-max-width: var(--max-width); + --iframe-max-width: none; + --iframe-width: auto; + /* Entire page */ +} +body .wide { + --line-width: var(--line-width-wide); + --container-table-width: var(--line-width-wide); + --container-dataview-table-width: var(--line-width-wide); + --container-img-width: var(--line-width-wide); + --container-iframe-width: var(--line-width-wide); + --container-map-width: var(--line-width-wide); + --container-chart-width: var(--line-width-wide); +} +body .max { + --line-width: var(--max-width); + --container-table-width: var(--max-width); + --container-dataview-table-width: var(--max-width); + --container-img-width: var(--max-width); + --container-iframe-width: var(--max-width); + --container-map-width: var(--max-width); + --container-chart-width: var(--max-width); +} + +table.dataview { + --table-min-width: min(var(--line-width),var(--max-width)); +} + +.cards table.dataview { + --table-width: 100%; + --table-min-width: none; +} + +body { + --table-drag-space: 16px; + --container-table-margin: calc(var(--content-margin-start) - var(--table-drag-space)); + --container-table-width: calc(var(--line-width) + var(--table-drag-space)*2); + --table-drag-padding: var(--table-drag-space); +} + +.is-mobile { + --table-drag-space: 16px; + --container-table-max-width: calc(100% - var(--container-table-margin)); +} + +.maximize-tables-auto { + --container-table-max-width: 100%; + --container-table-width: 100%; + --container-dataview-table-width: 100%; + --container-table-margin: 0; + --table-drag-padding: var(--table-drag-space) 0; + --table-max-width: 100%; + --table-margin: var(--content-margin-start) auto; + --table-width: auto; +} +.maximize-tables-auto .cards { + --container-table-max-width: var(--max-width); +} +.maximize-tables-auto .cards .block-language-dataview { + --table-margin: auto; +} + +.maximize-tables { + --container-table-max-width: 100%; + --container-table-width: 100%; + --container-table-margin: 0; + --table-drag-padding: var(--table-drag-space) 0; + --table-min-width: min(var(--line-width), var(--max-width)); + --table-max-width: 100%; + --table-margin: auto; + --table-width: auto; + --table-edge-cell-padding-first: 8px; + --table-edge-cell-padding-last: 8px; + --table-wrapper-width: auto; +} + +.table-wide, +.table-max, +.table-100 { + --table-max-width: 100%; + --table-width: 100%; +} + +.table-wide { + --container-table-width: var(--line-width-wide); + --container-dataview-table-width: var(--line-width-wide); + --container-table-margin: auto; + --table-edge-cell-padding-first: 0px; +} + +.table-max { + --container-table-width: var(--max-width); + --container-table-max-width: calc(var(--max-width) + var(--table-drag-space)*2); + --container-dataview-table-width: var(--max-width); + --container-table-margin: auto; + --table-edge-cell-padding-first: 0px; + --table-margin: 0; +} + +.table-100 { + --container-table-width: 100%; + --container-dataview-table-width: 100%; + --container-table-max-width: 100%; + --container-table-margin: 0; + --table-edge-cell-padding-first: 16px; + --table-edge-cell-padding-last: 16px; + --table-margin: 0; + --table-drag-padding: var(--table-drag-space) 0; + --table-wrapper-width: min(fit-content, 100%); + --bases-cards-embed-padding: 0 12px; + --bases-header-padding-end: var(--size-4-2); + --bases-header-padding-start: var(--size-4-2); +} +.table-100 .bases-view[data-view-type=table] { + --bases-embed-border-width: 0; + --bases-embed-border-radius: 0; +} +.table-100 .table-col-btn { + cursor: default !important; + margin-top: 8px; + height: var(--table-header-size); + inset-inline-start: calc(100% - var(--table-drag-handle-size) - 4px) !important; +} +.table-100 .markdown-source-view.mod-cm6, .table-100.markdown-source-view.mod-cm6 { + --table-drag-handle-background-active: transparent; +} +.table-100 .markdown-source-view.mod-cm6 .cm-table-widget .table-row-drag-handle, .table-100.markdown-source-view.mod-cm6 .cm-table-widget .table-row-drag-handle { + inset-inline-end: calc(100% - var(--table-drag-handle-size)) !important; +} + +.img-wide, +.img-max, +.img-100 { + --img-max-width: 100%; + --img-width: 100%; +} + +.img-wide { + --container-img-width: var(--line-width-wide); + --img-line-width: var(--line-width-wide); + --img-margin-start: calc(50% - var(--line-width-wide)/2); +} + +.img-max { + --container-img-width: var(--max-width); + --img-line-width: var(--max-width); + --img-margin-start: calc(50% - var(--max-width)/2); +} + +.img-100 { + --container-img-width: 100%; + --container-img-max-width: 100%; + --img-line-width: 100%; + --img-margin-start:0; +} + +.map-wide, +.map-max, +.map-100 { + --map-max-width: 100%; + --map-width: 100%; +} + +.map-wide { + --container-map-width: var(--line-width-wide); +} + +.map-max { + --container-map-width: var(--max-width); +} + +.map-100 { + --container-map-width: 100%; + --container-map-max-width: 100%; + --map-header-padding: var(--size-4-2); +} +.map-100 .bases-view[data-view-type=map] { + --bases-embed-border-radius: 0; +} + +.chart-wide, +.chart-max, +.chart-100 { + --chart-max-width: 100%; + --chart-width: 100%; +} + +.chart-wide { + --container-chart-width: var(--line-width-wide); +} + +.chart-max { + --container-chart-width: var(--max-width); +} + +.chart-100 { + --container-chart-width: 100%; + --container-chart-max-width: 100%; +} + +.iframe-wide, +.iframe-max, +.iframe-100 { + --iframe-max-width: 100%; + --iframe-width: 100%; +} + +.iframe-wide { + --container-iframe-width: var(--line-width-wide); +} + +.iframe-max { + --container-iframe-width: var(--max-width); +} + +.iframe-100 { + --container-iframe-width: 100%; + --container-iframe-max-width: 100%; +} + +/* Block widths ------------------------------------ + + Because we are using :has() this method requires + Obsidian installer 1.1.9 or above. +*/ +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content .cm-table-widget, +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content > div:has(table), +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer .cm-table-widget, +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer > div:has(table) { + width: var(--container-table-width); + max-width: var(--container-table-max-width); + margin-inline: var(--container-table-margin) !important; + padding-inline-start: var(--table-drag-padding); +} +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content .el-table, +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer .el-table { + margin-inline: var(--container-table-margin) !important; + padding-inline-start: var(--table-drag-padding); +} +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content .table-wrapper, +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer .table-wrapper { + width: var(--table-wrapper-width); +} +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content > .bases-embed, +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content > div:has(:is(.block-language-base, .bases-embed)), +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content > :has(> :is(.block-language-dataview, .block-language-dataviewjs) table), +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer > .bases-embed, +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer > div:has(:is(.block-language-base, .bases-embed)), +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer > :has(> :is(.block-language-dataview, .block-language-dataviewjs) table) { + width: var(--container-dataview-table-width); + max-width: var(--container-table-max-width); +} +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content table, +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer table { + width: var(--table-width); + max-width: var(--table-max-width); + margin-inline: var(--table-margin); + min-width: var(--table-min-width); +} +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content .block-language-dataviewjs > :is(p, h1, h2, h3, h4, h5, h6), +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer .block-language-dataviewjs > :is(p, h1, h2, h3, h4, h5, h6) { + width: var(--line-width); + margin-inline: var(--content-margin); +} +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content .block-language-dataviewjs > .dataview-error, +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer .block-language-dataviewjs > .dataview-error { + margin: 0 auto; + width: var(--content-line-width); +} +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content .dataview.dataview-error-box, +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer .dataview.dataview-error-box { + margin-inline: var(--table-margin); +} +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content > .image-embed, +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer > .image-embed { + padding-top: 0.25rem; + padding-bottom: 0.25rem; +} +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content > .image-embed, +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content > div:has(.image-embed), +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer > .image-embed, +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer > div:has(.image-embed) { + width: var(--container-img-width); + max-width: var(--container-img-max-width); +} +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content > .image-embed img, +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content > div:has(.image-embed) img, +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer > .image-embed img, +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer > div:has(.image-embed) img { + max-width: var(--img-max-width); +} +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content > img, +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer > img { + max-width: var(--img-line-width); + margin-inline-start: var(--img-margin-start) !important; +} +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content div:has(> .block-language-dataviewjs canvas, > .block-language-chart), +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer div:has(> .block-language-dataviewjs canvas, > .block-language-chart) { + width: var(--container-chart-width); + max-width: var(--container-chart-max-width); +} +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content div:has(> .block-language-dataviewjs canvas, > .block-language-chart) canvas, +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer div:has(> .block-language-dataviewjs canvas, > .block-language-chart) canvas { + max-width: var(--chart-max-width); +} +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content div:has(.bases-view[data-view-type=map]), +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer div:has(.bases-view[data-view-type=map]) { + width: var(--container-map-width); + max-width: var(--container-map-max-width); + --bases-header-padding-end: var(--map-header-padding); + --bases-header-padding-start: var(--map-header-padding); +} +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content div:has(.bases-view[data-view-type=map]) iframe, +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer div:has(.bases-view[data-view-type=map]) iframe { + max-width: var(--map-max-width); +} +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content > div:has(> :is(iframe, .cm-html-embed)), +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer > div:has(> :is(iframe, .cm-html-embed)) { + width: var(--container-iframe-width); + max-width: var(--container-iframe-max-width); +} +.markdown-source-view.mod-cm6.is-readable-line-width .cm-contentContainer.cm-contentContainer > .cm-content > div:has(> :is(iframe, .cm-html-embed)) iframe, +.markdown-preview-view.is-readable-line-width .markdown-preview-sizer > div:has(> :is(iframe, .cm-html-embed)) iframe { + max-width: var(--iframe-max-width); +} + +.borders-none { + --divider-width:0px; + --tab-outline-width: 0px; +} + +body:is(.borders-none) .mod-root .workspace-tab-header-container:is(div, :hover) { + --tab-outline-width: 0px; +} + +/* MIT License | Copyright (c) Stephan Ango (@kepano) + +Cards snippet for Obsidian + +author: @kepano +version: 3.0.1 + +Support my work: +https://github.com/sponsors/kepano + +*/ +body { + --cards-min-width: 180px; + --cards-max-width: 1fr; + --cards-mobile-width: 120px; + --cards-image-height: 400px; + --cards-padding: 1.2em; + --cards-image-fit: contain; + --cards-background: transparent; + --cards-background-hover: transparent; + --cards-border-width: 1px; + --cards-aspect-ratio: auto; + --cards-columns: repeat(auto-fit, minmax(var(--cards-min-width), var(--cards-max-width))); +} + +@media (max-width: 400pt) { + body { + --cards-min-width:var(--cards-mobile-width); + } +} +.cards.table-100 table.dataview tbody, +.table-100 .cards table.dataview tbody { + padding: 0.25rem 0.75rem; +} + +.cards table.dataview { + --table-width: 100%; + --table-edge-cell-padding-first: calc(var(--cards-padding)/2); + --table-edge-cell-padding-last: calc(var(--cards-padding)/2); + --table-cell-padding: calc(var(--cards-padding)/3) calc(var(--cards-padding)/2); + line-height: 1.3; +} +.cards table.dataview tbody { + clear: both; + padding: 0.5rem 0; + display: grid; + grid-template-columns: var(--cards-columns); + grid-column-gap: 0.75rem; + grid-row-gap: 0.75rem; +} +.cards table.dataview > tbody > tr { + background-color: var(--cards-background); + border: var(--cards-border-width) solid var(--background-modifier-border); + display: flex; + flex-direction: column; + margin: 0; + padding: 0 0 calc(var(--cards-padding) / 3); + border-radius: 6px; + overflow: hidden; + transition: box-shadow 0.15s linear; + max-width: var(--cards-max-width); + height: auto; +} +.cards table.dataview > tbody > tr:hover { + background-color: var(--cards-background-hover) !important; + border: var(--cards-border-width) solid var(--background-modifier-border-hover); + box-shadow: 0 4px 6px 0px rgba(0, 0, 0, 0.05), 0 1px 3px 1px rgba(0, 0, 0, 0.025); + transition: box-shadow 0.15s linear; +} +.cards table.dataview tbody > tr > td:first-child { + font-weight: var(--bold-weight); + border: none; +} +.cards table.dataview tbody > tr > td:first-child a { + display: block; +} +.cards table.dataview tbody > tr > td:last-child { + border: none; +} +.cards table.dataview tbody > tr > td:not(:first-child) { + font-size: calc(var(--table-text-size) * 0.9); + color: var(--text-muted); +} +.cards table.dataview tbody > tr > td > * { + padding: calc(var(--cards-padding) / 3) 0; +} +.cards table.dataview tbody > tr > td:not(:last-child):not(:first-child) { + padding: 4px 0; + border-bottom: 1px solid var(--background-modifier-border); + width: calc(100% - var(--cards-padding)); + margin: 0 calc(var(--cards-padding) / 2); +} +.cards table.dataview tbody > tr > td a { + text-decoration: none; +} +.cards table.dataview tbody > tr > td > button { + width: 100%; + margin: calc(var(--cards-padding) / 2) 0; +} +.cards table.dataview tbody > tr > td:last-child > button { + margin-bottom: calc(var(--cards-padding) / 6); +} +.cards table.dataview tbody > tr > td > ul { + width: 100%; + padding: 0.25em 0 !important; + margin: 0 auto !important; +} +.cards table.dataview tbody > tr > td img { + aspect-ratio: var(--cards-aspect-ratio); + width: 100%; + object-fit: var(--cards-image-fit); + max-height: var(--cards-image-height); + background-color: var(--background-secondary); + vertical-align: bottom; +} + +.markdown-source-view.mod-cm6.cards .dataview.table-view-table > tbody > tr > td, +.trim-cols .cards table.dataview tbody > tr > td { + white-space: normal; +} + +.links-int-on .cards table { + --link-decoration: none; +} + +/* Block button */ +.markdown-source-view.mod-cm6.cards .edit-block-button { + top: -1px; + right: 28px; + opacity: 1; +} + +/* ------------------- */ +/* Sorting menu */ +.cards.table-100 table.dataview thead > tr, +.table-100 .cards table.dataview thead > tr { + right: 0.75rem; +} + +.table-100 .cards table.dataview thead:before, +.cards.table-100 table.dataview thead:before { + margin-right: 0.75rem; +} + +.cards table.dataview thead { + user-select: none; + width: 180px; + display: block; + float: right; + position: relative; + text-align: right; + height: 24px; + padding-bottom: 0px; +} +.cards table.dataview thead:hover:after { + background-color: var(--background-modifier-hover); +} +.cards table.dataview thead:hover:before { + background-color: var(--text-muted); +} +.cards table.dataview thead:after, +.cards table.dataview thead:before { + content: ""; + position: absolute; + right: 0; + top: 0; + width: 10px; + height: 16px; + cursor: var(--cursor); + text-align: right; + padding: var(--size-4-1) var(--size-4-2); + margin-bottom: 2px; + border-radius: var(--radius-s); + font-weight: 500; + font-size: var(--font-adaptive-small); +} +.cards table.dataview thead:before { + background-color: var(--text-faint); + -webkit-mask-repeat: no-repeat; + -webkit-mask-size: 16px; + -webkit-mask-position: center center; + -webkit-mask-image: url('data:image/svg+xml;utf8,'); +} +.cards table.dataview thead > tr { + top: -1px; + position: absolute; + display: none; + z-index: 9; + border: 1px solid var(--background-modifier-border-hover); + background-color: var(--background-secondary); + box-shadow: var(--shadow-s); + padding: 6px; + border-radius: var(--radius-m); + flex-direction: column; + margin: 24px 0 0; + width: 100%; +} +.cards table.dataview thead:hover > tr { + display: flex; + height: auto; +} +.cards table.dataview thead > tr > th { + display: block; + padding: 3px 30px 3px 6px !important; + border-radius: var(--radius-s); + width: 100%; + font-weight: 400; + color: var(--text-normal); + cursor: var(--cursor); + border: none; + font-size: var(--font-ui-small); +} +.cards table.dataview thead > tr > th[sortable-style=sortable-asc], +.cards table.dataview thead > tr > th[sortable-style=sortable-desc] { + color: var(--text-normal); +} +.cards table.dataview thead > tr > th:hover { + color: var(--text-normal); + background-color: var(--background-modifier-hover); +} + +/* ------------------- */ +/* Card lists */ +.list-cards.markdown-preview-view .list-bullet, +.list-cards.markdown-preview-view .list-collapse-indicator, .list-cards.markdown-preview-view.markdown-rendered.show-indentation-guide li > ul::before { + display: none; +} +.list-cards.markdown-preview-view div > ul { + display: grid; + gap: 0.75rem; + grid-template-columns: var(--cards-columns); + padding: 0; + line-height: var(--line-height-tight); +} +.list-cards.markdown-preview-view div > ul .contains-task-list { + padding-inline-start: calc(var(--cards-padding) * 1.5); +} +.list-cards.markdown-preview-view div > ul > li.task-list-item > .task-list-item-checkbox { + margin-inline-start: 3px; +} +.list-cards.markdown-preview-view div > ul > li { + background-color: var(--cards-background); + padding: calc(var(--cards-padding) / 2); + border-radius: var(--radius-s); + border: var(--cards-border-width) solid var(--background-modifier-border); + overflow: hidden; + margin-inline-start: 0; +} +.list-cards.markdown-preview-view div > ul .image-embed { + padding: 0; + display: block; + background-color: var(--background-secondary); + border-radius: var(--image-radius); +} +.list-cards.markdown-preview-view div > ul .image-embed img { + aspect-ratio: var(--cards-aspect-ratio); + object-fit: var(--cards-image-fit); + max-height: var(--cards-image-height); + background-color: var(--background-secondary); + vertical-align: bottom; +} +.list-cards.markdown-preview-view div > ul > li > a { + --link-decoration: none; + --link-external-decoration: none; + font-weight: var(--bold-weight); +} +.list-cards.markdown-preview-view div ul > li:hover { + border-color: var(--background-modifier-border-hover); +} +.list-cards.markdown-preview-view div ul ul { + display: block; + width: 100%; + color: var(--text-muted); + font-size: var(--font-smallest); + margin: calc(var(--cards-padding) / -4) 0; + padding: calc(var(--cards-padding) / 2) 0; +} +.list-cards.markdown-preview-view div ul ul ul { + padding-bottom: calc(var(--cards-padding) / 4); +} +.list-cards.markdown-preview-view div ul ul > li { + display: block; + margin-inline-start: 0; +} + +/* ------------------- */ +/* Helper classes */ +.cards.cards-16-9, +.list-cards.cards-16-9 { + --cards-aspect-ratio: 16/9; +} +.cards.cards-1-1, +.list-cards.cards-1-1 { + --cards-aspect-ratio: 1/1; +} +.cards.cards-2-1, +.list-cards.cards-2-1 { + --cards-aspect-ratio: 2/1; +} +.cards.cards-2-3, +.list-cards.cards-2-3 { + --cards-aspect-ratio: 2/3; +} +.cards.cards-cols-1, +.list-cards.cards-cols-1 { + --cards-columns: repeat(1, minmax(0, 1fr)); +} +.cards.cards-cols-2, +.list-cards.cards-cols-2 { + --cards-columns: repeat(2, minmax(0, 1fr)); +} +.cards.cards-cover, +.list-cards.cards-cover { + --cards-image-fit: cover; + /* Images */ +} +.cards.cards-cover tbody > tr > td:first-child, +.list-cards.cards-cover tbody > tr > td:first-child { + padding: 0 !important; + background-color: var(--background-secondary); + display: block; + margin: 0; + width: 100%; +} +.cards.cards-cover tbody > tr > td:first-child img, +.list-cards.cards-cover tbody > tr > td:first-child img { + border-radius: 0; +} +.cards.cards-align-bottom table.dataview tbody > tr > td:last-child, +.list-cards.cards-align-bottom table.dataview tbody > tr > td:last-child { + margin-top: auto; +} + +@media (max-width: 400pt) { + .cards table.dataview tbody > tr > td:not(:first-child) { + font-size: 80%; + } +} +@media (min-width: 400pt) { + .cards-cols-3 { + --cards-columns: repeat(3, minmax(0, 1fr)); + } + .cards-cols-4 { + --cards-columns: repeat(4, minmax(0, 1fr)); + } + .cards-cols-5 { + --cards-columns: repeat(5, minmax(0, 1fr)); + } + .cards-cols-6 { + --cards-columns: repeat(6, minmax(0, 1fr)); + } + .cards-cols-7 { + --cards-columns: repeat(7, minmax(0, 1fr)); + } + .cards-cols-8 { + --cards-columns: repeat(8, minmax(0, 1fr)); + } +} +/* Checklist icons */ +.cm-formatting.cm-formatting-task.cm-property { + font-family: var(--font-monospace); +} + +input[data-task=">"]:checked, +input[data-task="!"]:checked, +input[data-task="-"]:checked, +input[data-task="<"]:checked, +input[data-task=l]:checked, +input[data-task="*"]:checked, +input[data-task=I]:checked, +input[data-task=p]:checked, +input[data-task=f]:checked, +input[data-task=k]:checked, +input[data-task=u]:checked, +input[data-task=w]:checked, +input[data-task=c]:checked, +input[data-task=d]:checked, +input[data-task=b]:checked, +li[data-task=">"] > input:checked, +li[data-task="!"] > input:checked, +li[data-task="-"] > input:checked, +li[data-task="<"] > input:checked, +li[data-task=l] > input:checked, +li[data-task="*"] > input:checked, +li[data-task=I] > input:checked, +li[data-task=p] > input:checked, +li[data-task=f] > input:checked, +li[data-task=k] > input:checked, +li[data-task=u] > input:checked, +li[data-task=d] > input:checked, +li[data-task=w] > input:checked, +li[data-task=c] > input:checked, +li[data-task=b] > input:checked, +li[data-task=">"] > p > input:checked, +li[data-task="!"] > p > input:checked, +li[data-task="-"] > p > input:checked, +li[data-task="<"] > p > input:checked, +li[data-task=l] > p > input:checked, +li[data-task="*"] > p > input:checked, +li[data-task=I] > p > input:checked, +li[data-task=p] > p > input:checked, +li[data-task=f] > p > input:checked, +li[data-task=k] > p > input:checked, +li[data-task=u] > p > input:checked, +li[data-task=d] > p > input:checked, +li[data-task=w] > p > input:checked, +li[data-task=c] > p > input:checked, +li[data-task=b] > p > input:checked { + --checkbox-marker-color: transparent; + border: none; + border-radius: 0; + background-image: none; + background-color: currentColor; + -webkit-mask-size: var(--checkbox-icon); + -webkit-mask-position: 50% 50%; +} + +/* [>] Forwarded */ +input[data-task=">"]:checked, +li[data-task=">"] > input:checked, +li[data-task=">"] > p > input:checked { + color: var(--text-faint); + transform: rotate(90deg); + -webkit-mask-position: 50% 100%; + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath d='M10.894 2.553a1 1 0 00-1.788 0l-7 14a1 1 0 001.169 1.409l5-1.429A1 1 0 009 15.571V11a1 1 0 112 0v4.571a1 1 0 00.725.962l5 1.428a1 1 0 001.17-1.408l-7-14z' /%3E%3C/svg%3E"); +} + +/* [<] Schedule */ +input[data-task="<"]:checked, +li[data-task="<"] > input:checked, +li[data-task="<"] > p > input:checked { + color: var(--text-faint); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M6 2a1 1 0 00-1 1v1H4a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2h-1V3a1 1 0 10-2 0v1H7V3a1 1 0 00-1-1zm0 5a1 1 0 000 2h8a1 1 0 100-2H6z' clip-rule='evenodd' /%3E%3C/svg%3E"); +} + +/* [?] Question */ +input[data-task="?"]:checked, +li[data-task="?"] > input:checked, +li[data-task="?"] > p > input:checked { + --checkbox-marker-color: transparent; + background-color: var(--color-yellow); + border-color: var(--color-yellow); + background-position: 50% 50%; + background-size: 200% 90%; + background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" preserveAspectRatio="xMidYMid meet" viewBox="0 0 16 16"%3E%3Cpath fill="white" fill-rule="evenodd" d="M4.475 5.458c-.284 0-.514-.237-.47-.517C4.28 3.24 5.576 2 7.825 2c2.25 0 3.767 1.36 3.767 3.215c0 1.344-.665 2.288-1.79 2.973c-1.1.659-1.414 1.118-1.414 2.01v.03a.5.5 0 0 1-.5.5h-.77a.5.5 0 0 1-.5-.495l-.003-.2c-.043-1.221.477-2.001 1.645-2.712c1.03-.632 1.397-1.135 1.397-2.028c0-.979-.758-1.698-1.926-1.698c-1.009 0-1.71.529-1.938 1.402c-.066.254-.278.461-.54.461h-.777ZM7.496 14c.622 0 1.095-.474 1.095-1.09c0-.618-.473-1.092-1.095-1.092c-.606 0-1.087.474-1.087 1.091S6.89 14 7.496 14Z"%2F%3E%3C%2Fsvg%3E'); +} +.theme-dark input[data-task="?"]:checked, +.theme-dark li[data-task="?"] > input:checked, +.theme-dark li[data-task="?"] > p > input:checked { + background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" preserveAspectRatio="xMidYMid meet" viewBox="0 0 16 16"%3E%3Cpath fill="black" fill-opacity="0.8" fill-rule="evenodd" d="M4.475 5.458c-.284 0-.514-.237-.47-.517C4.28 3.24 5.576 2 7.825 2c2.25 0 3.767 1.36 3.767 3.215c0 1.344-.665 2.288-1.79 2.973c-1.1.659-1.414 1.118-1.414 2.01v.03a.5.5 0 0 1-.5.5h-.77a.5.5 0 0 1-.5-.495l-.003-.2c-.043-1.221.477-2.001 1.645-2.712c1.03-.632 1.397-1.135 1.397-2.028c0-.979-.758-1.698-1.926-1.698c-1.009 0-1.71.529-1.938 1.402c-.066.254-.278.461-.54.461h-.777ZM7.496 14c.622 0 1.095-.474 1.095-1.09c0-.618-.473-1.092-1.095-1.092c-.606 0-1.087.474-1.087 1.091S6.89 14 7.496 14Z"%2F%3E%3C%2Fsvg%3E'); +} + +/* [/] Incomplete */ +input[data-task="/"]:checked, +li[data-task="/"] > input:checked, +li[data-task="/"] > p > input:checked { + background-image: none; + background-color: transparent; + position: relative; + overflow: hidden; +} +input[data-task="/"]:checked:after, +li[data-task="/"] > input:checked:after, +li[data-task="/"] > p > input:checked:after { + top: 0; + left: 0; + content: " "; + display: block; + position: absolute; + background-color: var(--background-modifier-accent); + width: calc(50% - 0.5px); + height: 100%; + -webkit-mask-image: none; +} + +/* [!] Important */ +input[data-task="!"]:checked, +li[data-task="!"] > input:checked, +li[data-task="!"] > p > input:checked { + color: var(--color-orange); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z' clip-rule='evenodd' /%3E%3C/svg%3E"); +} + +/* ["] Quote */ +input[data-task=“]:checked, +li[data-task=“] > input:checked, +li[data-task=“] > p > input:checked, +input[data-task='"']:checked, +li[data-task='"'] > input:checked, +li[data-task='"'] > p > input:checked { + --checkbox-marker-color: transparent; + background-position: 50% 50%; + background-color: var(--color-cyan); + border-color: var(--color-cyan); + background-size: 75%; + background-repeat: no-repeat; + background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"%3E%3Cpath fill="white" d="M6.5 10c-.223 0-.437.034-.65.065c.069-.232.14-.468.254-.68c.114-.308.292-.575.469-.844c.148-.291.409-.488.601-.737c.201-.242.475-.403.692-.604c.213-.21.492-.315.714-.463c.232-.133.434-.28.65-.35l.539-.222l.474-.197l-.485-1.938l-.597.144c-.191.048-.424.104-.689.171c-.271.05-.56.187-.882.312c-.318.142-.686.238-1.028.466c-.344.218-.741.4-1.091.692c-.339.301-.748.562-1.05.945c-.33.358-.656.734-.909 1.162c-.293.408-.492.856-.702 1.299c-.19.443-.343.896-.468 1.336c-.237.882-.343 1.72-.384 2.437c-.034.718-.014 1.315.028 1.747c.015.204.043.402.063.539l.025.168l.026-.006A4.5 4.5 0 1 0 6.5 10zm11 0c-.223 0-.437.034-.65.065c.069-.232.14-.468.254-.68c.114-.308.292-.575.469-.844c.148-.291.409-.488.601-.737c.201-.242.475-.403.692-.604c.213-.21.492-.315.714-.463c.232-.133.434-.28.65-.35l.539-.222l.474-.197l-.485-1.938l-.597.144c-.191.048-.424.104-.689.171c-.271.05-.56.187-.882.312c-.317.143-.686.238-1.028.467c-.344.218-.741.4-1.091.692c-.339.301-.748.562-1.05.944c-.33.358-.656.734-.909 1.162c-.293.408-.492.856-.702 1.299c-.19.443-.343.896-.468 1.336c-.237.882-.343 1.72-.384 2.437c-.034.718-.014 1.315.028 1.747c.015.204.043.402.063.539l.025.168l.026-.006A4.5 4.5 0 1 0 17.5 10z"%2F%3E%3C%2Fsvg%3E'); +} +.theme-dark input[data-task=“]:checked, +.theme-dark li[data-task=“] > input:checked, +.theme-dark li[data-task=“] > p > input:checked, +.theme-dark input[data-task='"']:checked, +.theme-dark li[data-task='"'] > input:checked, +.theme-dark li[data-task='"'] > p > input:checked { + background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"%3E%3Cpath fill="black" fill-opacity="0.7" d="M6.5 10c-.223 0-.437.034-.65.065c.069-.232.14-.468.254-.68c.114-.308.292-.575.469-.844c.148-.291.409-.488.601-.737c.201-.242.475-.403.692-.604c.213-.21.492-.315.714-.463c.232-.133.434-.28.65-.35l.539-.222l.474-.197l-.485-1.938l-.597.144c-.191.048-.424.104-.689.171c-.271.05-.56.187-.882.312c-.318.142-.686.238-1.028.466c-.344.218-.741.4-1.091.692c-.339.301-.748.562-1.05.945c-.33.358-.656.734-.909 1.162c-.293.408-.492.856-.702 1.299c-.19.443-.343.896-.468 1.336c-.237.882-.343 1.72-.384 2.437c-.034.718-.014 1.315.028 1.747c.015.204.043.402.063.539l.025.168l.026-.006A4.5 4.5 0 1 0 6.5 10zm11 0c-.223 0-.437.034-.65.065c.069-.232.14-.468.254-.68c.114-.308.292-.575.469-.844c.148-.291.409-.488.601-.737c.201-.242.475-.403.692-.604c.213-.21.492-.315.714-.463c.232-.133.434-.28.65-.35l.539-.222l.474-.197l-.485-1.938l-.597.144c-.191.048-.424.104-.689.171c-.271.05-.56.187-.882.312c-.317.143-.686.238-1.028.467c-.344.218-.741.4-1.091.692c-.339.301-.748.562-1.05.944c-.33.358-.656.734-.909 1.162c-.293.408-.492.856-.702 1.299c-.19.443-.343.896-.468 1.336c-.237.882-.343 1.72-.384 2.437c-.034.718-.014 1.315.028 1.747c.015.204.043.402.063.539l.025.168l.026-.006A4.5 4.5 0 1 0 17.5 10z"%2F%3E%3C%2Fsvg%3E'); +} + +/* [-] Canceled */ +input[data-task="-"]:checked, +li[data-task="-"] > input:checked, +li[data-task="-"] > p > input:checked { + color: var(--text-faint); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z' clip-rule='evenodd' /%3E%3C/svg%3E"); +} + +body:not(.tasks) .markdown-source-view.mod-cm6 .HyperMD-task-line[data-task]:is([data-task="-"]), +body:not(.tasks) .markdown-preview-view ul li[data-task="-"].task-list-item.is-checked, +body:not(.tasks) li[data-task="-"].task-list-item.is-checked { + color: var(--text-faint); + text-decoration: line-through solid var(--text-faint) 1px; +} + +/* [*] Star */ +input[data-task="*"]:checked, +li[data-task="*"] > input:checked, +li[data-task="*"] > p > input:checked { + color: var(--color-yellow); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath d='M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z' /%3E%3C/svg%3E"); +} + +/* [l] Location */ +input[data-task=l]:checked, +li[data-task=l] > input:checked, +li[data-task=l] > p > input:checked { + color: var(--color-red); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M5.05 4.05a7 7 0 119.9 9.9L10 18.9l-4.95-4.95a7 7 0 010-9.9zM10 11a2 2 0 100-4 2 2 0 000 4z' clip-rule='evenodd' /%3E%3C/svg%3E"); +} + +/* [i] Info */ +input[data-task=i]:checked, +li[data-task=i] > input:checked, +li[data-task=i] > p > input:checked { + --checkbox-marker-color: transparent; + background-color: var(--color-blue); + border-color: var(--color-blue); + background-position: 50%; + background-size: 100%; + background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" preserveAspectRatio="xMidYMid meet" viewBox="0 0 512 512"%3E%3Cpath fill="none" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="40" d="M196 220h64v172"%2F%3E%3Cpath fill="none" stroke="white" stroke-linecap="round" stroke-miterlimit="10" stroke-width="40" d="M187 396h138"%2F%3E%3Cpath fill="white" d="M256 160a32 32 0 1 1 32-32a32 32 0 0 1-32 32Z"%2F%3E%3C%2Fsvg%3E'); +} +.theme-dark input[data-task=i]:checked, +.theme-dark li[data-task=i] > input:checked, +.theme-dark li[data-task=i] > p > input:checked { + background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" preserveAspectRatio="xMidYMid meet" viewBox="0 0 512 512"%3E%3Cpath fill="none" stroke="black" stroke-opacity="0.8" stroke-linecap="round" stroke-linejoin="round" stroke-width="40" d="M196 220h64v172"%2F%3E%3Cpath fill="none" stroke="black" stroke-opacity="0.8" stroke-linecap="round" stroke-miterlimit="10" stroke-width="40" d="M187 396h138"%2F%3E%3Cpath fill="black" fill-opacity="0.8" d="M256 160a32 32 0 1 1 32-32a32 32 0 0 1-32 32Z"%2F%3E%3C%2Fsvg%3E'); +} + +/* [S] Amount/savings/money */ +input[data-task=S]:checked, +li[data-task=S] > input:checked, +li[data-task=S] > p > input:checked { + --checkbox-marker-color: transparent; + border-color: var(--color-green); + background-color: var(--color-green); + background-size: 100%; + background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" preserveAspectRatio="xMidYMid meet" viewBox="0 0 48 48"%3E%3Cpath fill="white" fill-rule="evenodd" d="M26 8a2 2 0 1 0-4 0v2a8 8 0 1 0 0 16v8a4.002 4.002 0 0 1-3.773-2.666a2 2 0 0 0-3.771 1.332A8.003 8.003 0 0 0 22 38v2a2 2 0 1 0 4 0v-2a8 8 0 1 0 0-16v-8a4.002 4.002 0 0 1 3.773 2.666a2 2 0 0 0 3.771-1.332A8.003 8.003 0 0 0 26 10V8Zm-4 6a4 4 0 0 0 0 8v-8Zm4 12v8a4 4 0 0 0 0-8Z" clip-rule="evenodd"%2F%3E%3C%2Fsvg%3E'); +} +.theme-dark input[data-task=S]:checked, +.theme-dark li[data-task=S] > input:checked, +.theme-dark li[data-task=S] > p > input:checked { + background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" preserveAspectRatio="xMidYMid meet" viewBox="0 0 48 48"%3E%3Cpath fill-opacity="0.8" fill="black" fill-rule="evenodd" d="M26 8a2 2 0 1 0-4 0v2a8 8 0 1 0 0 16v8a4.002 4.002 0 0 1-3.773-2.666a2 2 0 0 0-3.771 1.332A8.003 8.003 0 0 0 22 38v2a2 2 0 1 0 4 0v-2a8 8 0 1 0 0-16v-8a4.002 4.002 0 0 1 3.773 2.666a2 2 0 0 0 3.771-1.332A8.003 8.003 0 0 0 26 10V8Zm-4 6a4 4 0 0 0 0 8v-8Zm4 12v8a4 4 0 0 0 0-8Z" clip-rule="evenodd"%2F%3E%3C%2Fsvg%3E'); +} + +/* [I] Idea/lightbulb */ +input[data-task=I]:checked, +li[data-task=I] > input:checked, +li[data-task=I] > p > input:checked { + color: var(--color-yellow); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath d='M11 3a1 1 0 10-2 0v1a1 1 0 102 0V3zM15.657 5.757a1 1 0 00-1.414-1.414l-.707.707a1 1 0 001.414 1.414l.707-.707zM18 10a1 1 0 01-1 1h-1a1 1 0 110-2h1a1 1 0 011 1zM5.05 6.464A1 1 0 106.464 5.05l-.707-.707a1 1 0 00-1.414 1.414l.707.707zM5 10a1 1 0 01-1 1H3a1 1 0 110-2h1a1 1 0 011 1zM8 16v-1h4v1a2 2 0 11-4 0zM12 14c.015-.34.208-.646.477-.859a4 4 0 10-4.954 0c.27.213.462.519.476.859h4.002z' /%3E%3C/svg%3E"); +} + +/* [f] Fire */ +input[data-task=f]:checked, +li[data-task=f] > input:checked, +li[data-task=f] > p > input:checked { + color: var(--color-red); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12.395 2.553a1 1 0 00-1.45-.385c-.345.23-.614.558-.822.88-.214.33-.403.713-.57 1.116-.334.804-.614 1.768-.84 2.734a31.365 31.365 0 00-.613 3.58 2.64 2.64 0 01-.945-1.067c-.328-.68-.398-1.534-.398-2.654A1 1 0 005.05 6.05 6.981 6.981 0 003 11a7 7 0 1011.95-4.95c-.592-.591-.98-.985-1.348-1.467-.363-.476-.724-1.063-1.207-2.03zM12.12 15.12A3 3 0 017 13s.879.5 2.5.5c0-1 .5-4 1.25-4.5.5 1 .786 1.293 1.371 1.879A2.99 2.99 0 0113 13a2.99 2.99 0 01-.879 2.121z' clip-rule='evenodd' /%3E%3C/svg%3E"); +} + +/* [k] Key */ +input[data-task=k]:checked, +li[data-task=k] > input:checked, +li[data-task=k] > p > input:checked { + color: var(--color-yellow); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M18 8a6 6 0 01-7.743 5.743L10 14l-1 1-1 1H6v2H2v-4l4.257-4.257A6 6 0 1118 8zm-6-4a1 1 0 100 2 2 2 0 012 2 1 1 0 102 0 4 4 0 00-4-4z' clip-rule='evenodd' /%3E%3C/svg%3E"); +} + +/* [u] Up */ +input[data-task=u]:checked, +li[data-task=u] > input:checked, +li[data-task=u] > p > input:checked { + color: var(--color-green); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12 7a1 1 0 110-2h5a1 1 0 011 1v5a1 1 0 11-2 0V8.414l-4.293 4.293a1 1 0 01-1.414 0L8 10.414l-4.293 4.293a1 1 0 01-1.414-1.414l5-5a1 1 0 011.414 0L11 10.586 14.586 7H12z' clip-rule='evenodd' /%3E%3C/svg%3E"); +} + +/* [d] Down */ +input[data-task=d]:checked, +li[data-task=d] > input:checked, +li[data-task=d] > p > input:checked { + color: var(--color-red); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12 13a1 1 0 100 2h5a1 1 0 001-1V9a1 1 0 10-2 0v2.586l-4.293-4.293a1 1 0 00-1.414 0L8 9.586 3.707 5.293a1 1 0 00-1.414 1.414l5 5a1 1 0 001.414 0L11 9.414 14.586 13H12z' clip-rule='evenodd' /%3E%3C/svg%3E"); +} + +/* [w] Win */ +input[data-task=w]:checked, +li[data-task=w] > input:checked, +li[data-task=w] > p > input:checked { + color: var(--color-purple); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M6 3a1 1 0 011-1h.01a1 1 0 010 2H7a1 1 0 01-1-1zm2 3a1 1 0 00-2 0v1a2 2 0 00-2 2v1a2 2 0 00-2 2v.683a3.7 3.7 0 011.055.485 1.704 1.704 0 001.89 0 3.704 3.704 0 014.11 0 1.704 1.704 0 001.89 0 3.704 3.704 0 014.11 0 1.704 1.704 0 001.89 0A3.7 3.7 0 0118 12.683V12a2 2 0 00-2-2V9a2 2 0 00-2-2V6a1 1 0 10-2 0v1h-1V6a1 1 0 10-2 0v1H8V6zm10 8.868a3.704 3.704 0 01-4.055-.036 1.704 1.704 0 00-1.89 0 3.704 3.704 0 01-4.11 0 1.704 1.704 0 00-1.89 0A3.704 3.704 0 012 14.868V17a1 1 0 001 1h14a1 1 0 001-1v-2.132zM9 3a1 1 0 011-1h.01a1 1 0 110 2H10a1 1 0 01-1-1zm3 0a1 1 0 011-1h.01a1 1 0 110 2H13a1 1 0 01-1-1z' clip-rule='evenodd' /%3E%3C/svg%3E"); +} + +/* [p] Pros */ +input[data-task=p]:checked, +li[data-task=p] > input:checked, +li[data-task=p] > p > input:checked { + color: var(--color-green); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath d='M2 10.5a1.5 1.5 0 113 0v6a1.5 1.5 0 01-3 0v-6zM6 10.333v5.43a2 2 0 001.106 1.79l.05.025A4 4 0 008.943 18h5.416a2 2 0 001.962-1.608l1.2-6A2 2 0 0015.56 8H12V4a2 2 0 00-2-2 1 1 0 00-1 1v.667a4 4 0 01-.8 2.4L6.8 7.933a4 4 0 00-.8 2.4z' /%3E%3C/svg%3E"); +} + +/* [c] Cons */ +input[data-task=c]:checked, +li[data-task=c] > input:checked, +li[data-task=c] > p > input:checked { + color: var(--color-orange); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath d='M18 9.5a1.5 1.5 0 11-3 0v-6a1.5 1.5 0 013 0v6zM14 9.667v-5.43a2 2 0 00-1.105-1.79l-.05-.025A4 4 0 0011.055 2H5.64a2 2 0 00-1.962 1.608l-1.2 6A2 2 0 004.44 12H8v4a2 2 0 002 2 1 1 0 001-1v-.667a4 4 0 01.8-2.4l1.4-1.866a4 4 0 00.8-2.4z' /%3E%3C/svg%3E"); +} + +/* [b] Bookmark */ +input[data-task=b]:checked, +li[data-task=b] > input:checked, +li[data-task=b] > p > input:checked { + color: var(--color-orange); + -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath d='M5 4a2 2 0 012-2h6a2 2 0 012 2v14l-5-2.5L5 18V4z' /%3E%3C/svg%3E"); +} + +/* Colorful active states */ +.colorful-active .nav-files-container { + --nav-item-background-active: var(--interactive-accent); + --nav-item-color-active: var(--text-on-accent); +} +.colorful-active .nav-files-container .is-active .nav-file-tag { + color: var(--text-on-accent); + opacity: 0.6; +} +.colorful-active .tree-item-self.is-being-renamed:focus-within { + --nav-item-color-active: var(--text-normal); +} +.colorful-active #calendar-container .active, +.colorful-active #calendar-container .active.today, +.colorful-active #calendar-container .active:hover, +.colorful-active #calendar-container .day:active { + background-color: var(--interactive-accent); + color: var(--text-on-accent); +} +.colorful-active #calendar-container .day:active .dot, +.colorful-active #calendar-container .active .dot, +.colorful-active #calendar-container .today.active .dot { + fill: var(--text-on-accent); +} + +body:not(.colorful-active) .horizontal-tab-nav-item.is-active, +body:not(.colorful-active) .vertical-tab-nav-item.is-active { + background-color: var(--bg3); + color: var(--text-normal); +} + +body { + --frame-background: + hsl( + var(--frame-background-h), + var(--frame-background-s), + var(--frame-background-l)); + --frame-icon-color: var(--frame-muted-color); +} + +.theme-light { + --frame-background-h: var(--accent-h); + --frame-background-s: var(--accent-s); + --frame-background-l: calc(var(--accent-l) + 30%); + --frame-outline-color: + hsla( + var(--frame-background-h), + var(--frame-background-s), + calc(var(--frame-background-l) - 6.5%), + 1 + ); + --frame-muted-color: + hsl( + var(--frame-background-h), + calc(var(--frame-background-s) - 10%), + calc(var(--frame-background-l) - 35%)); +} + +.theme-dark { + --frame-background-h: var(--accent-h); + --frame-background-s: var(--accent-s); + --frame-background-l: calc(var(--accent-l) - 25%); + --frame-outline-color: + hsla( + var(--frame-background-h), + calc(var(--frame-background-s) - 2%), + calc(var(--frame-background-l) + 6.5%), + 1 + ); + --frame-muted-color: + hsl( + var(--frame-background-h), + calc(var(--frame-background-s) - 10%), + calc(var(--frame-background-l) + 25%)); +} + +.colorful-frame.theme-dark { + --tab-outline-width: 0px; +} + +.colorful-frame.is-focused, +.colorful-frame { + --frame-divider-color: var(--frame-outline-color); + --titlebar-background: var(--frame-background); + --titlebar-background-focused: var(--frame-background); + --titlebar-text-color: var(--frame-muted-color); + --minimal-tab-text-color: var(--frame-muted-color); +} +.colorful-frame.is-focused .workspace-tabs:not(.mod-stacked), +.colorful-frame .workspace-tabs:not(.mod-stacked) { + --tab-text-color: var(--minimal-tab-text-color); + --tab-text-color-focused: var(--minimal-tab-text-color); +} +.colorful-frame.is-focused .titlebar, +.colorful-frame.is-focused .workspace-ribbon.mod-left:before, +.colorful-frame.is-focused .mod-top .workspace-tab-header-container, +.colorful-frame .titlebar, +.colorful-frame .workspace-ribbon.mod-left:before, +.colorful-frame .mod-top .workspace-tab-header-container { + --tab-outline-color: var(--frame-outline-color); + --tab-divider-color: var(--frame-outline-color); +} +.colorful-frame.is-focused .mod-root .workspace-tab-header .workspace-tab-header-inner-icon, +.colorful-frame .mod-root .workspace-tab-header .workspace-tab-header-inner-icon { + --icon-color: var(--minimal-tab-text-color-active); + --icon-color-hover: var(--minimal-tab-text-color-active); + --icon-color-active: var(--minimal-tab-text-color-active); + --icon-color-focused: var(--minimal-tab-text-color-active); +} +.colorful-frame.is-focused .sidebar-toggle-button, +.colorful-frame.is-focused .workspace-tab-header:not(.is-active), +.colorful-frame.is-focused .workspace-tab-header-new-tab, +.colorful-frame.is-focused .workspace-tab-header-tab-list, +.colorful-frame.is-focused .mod-left-split .mod-top .workspace-tab-header, +.colorful-frame.is-focused .mod-right-split .mod-top .workspace-tab-header, +.colorful-frame .sidebar-toggle-button, +.colorful-frame .workspace-tab-header:not(.is-active), +.colorful-frame .workspace-tab-header-new-tab, +.colorful-frame .workspace-tab-header-tab-list, +.colorful-frame .mod-left-split .mod-top .workspace-tab-header, +.colorful-frame .mod-right-split .mod-top .workspace-tab-header { + --background-modifier-hover: var(--frame-outline-color); + --icon-color: var(--frame-icon-color); + --icon-color-hover: var(--frame-icon-color); + --icon-color-active: var(--frame-icon-color); + --icon-color-focused: var(--frame-icon-color); + --icon-color-focus: var(--frame-icon-color); +} +.colorful-frame.is-focused .mod-right-split .mod-top .workspace-tab-header.is-active .workspace-tab-header-inner-icon, +.colorful-frame.is-focused .mod-left-split .mod-top .workspace-tab-header.is-active .workspace-tab-header-inner-icon, +.colorful-frame .mod-right-split .mod-top .workspace-tab-header.is-active .workspace-tab-header-inner-icon, +.colorful-frame .mod-left-split .mod-top .workspace-tab-header.is-active .workspace-tab-header-inner-icon { + color: var(--frame-icon-color); +} + +.workspace-leaf-resize-handle { + transition: none; +} + +.colorful-frame.is-hidden-frameless:not(.minimal-focus-mode) .workspace-split.mod-vertical > * > .workspace-leaf-resize-handle, +.colorful-frame.is-hidden-frameless:not(.minimal-focus-mode) .workspace-split.mod-left-split > .workspace-leaf-resize-handle, +.colorful-frame.is-hidden-frameless:not(.minimal-focus-mode) .workspace-split.mod-right-split > .workspace-leaf-resize-handle { + -webkit-app-region: no-drag; + border: 0; + z-index: 15; +} +.colorful-frame.is-hidden-frameless:not(.minimal-focus-mode) .workspace-split.mod-vertical > * > .workspace-leaf-resize-handle:after, +.colorful-frame.is-hidden-frameless:not(.minimal-focus-mode) .workspace-split.mod-left-split > .workspace-leaf-resize-handle:after, +.colorful-frame.is-hidden-frameless:not(.minimal-focus-mode) .workspace-split.mod-right-split > .workspace-leaf-resize-handle:after { + content: ""; + height: 100%; + width: 1px; + background: linear-gradient(180deg, var(--frame-outline-color) var(--header-height), var(--divider-color) var(--header-height)); + top: 0; + position: absolute; +} +.colorful-frame.is-hidden-frameless:not(.minimal-focus-mode) .workspace-split.mod-vertical > * > .workspace-leaf-resize-handle:hover:after, +.colorful-frame.is-hidden-frameless:not(.minimal-focus-mode) .workspace-split.mod-left-split > .workspace-leaf-resize-handle:hover:after, +.colorful-frame.is-hidden-frameless:not(.minimal-focus-mode) .workspace-split.mod-right-split > .workspace-leaf-resize-handle:hover:after { + background: var(--divider-color-hover); +} +.colorful-frame.is-hidden-frameless:not(.minimal-focus-mode) .workspace-split.mod-right-split > .workspace-leaf-resize-handle:after { + left: 0; +} +.colorful-frame.is-hidden-frameless:not(.minimal-focus-mode) .workspace-split.mod-vertical > * > .workspace-leaf-resize-handle:after, +.colorful-frame.is-hidden-frameless:not(.minimal-focus-mode) .workspace-split.mod-left-split > .workspace-leaf-resize-handle:after { + right: 0; +} + +/* Colorful headings */ +body.colorful-headings { + --h1-color: var(--color-red); + --h2-color:var(--color-orange); + --h3-color:var(--color-yellow); + --h4-color:var(--color-green); + --h5-color:var(--color-blue); + --h6-color:var(--color-purple); +} +body.colorful-headings .modal { + --h1-color: var(--text-normal); + --h2-color: var(--text-normal); + --h3-color: var(--text-normal); + --h4-color: var(--text-normal); + --h5-color: var(--text-normal); + --h6-color: var(--text-normal); +} + +/* Focus mode */ +/* MIT License | Copyright (c) Stephan Ango (@kepano) */ +/* Hide app ribbon */ +.workspace-ribbon.mod-left { + border-left: 0; + transition: none; +} + +:root { + --focus-animation-duration: 0.1s; +} + +.minimal-focus-mode.is-translucent .workspace-ribbon.mod-left.is-collapsed, .minimal-focus-mode.is-translucent .workspace-ribbon.mod-left.is-collapsed:before { + background-color: var(--background-primary) !important; +} +.minimal-focus-mode .workspace-ribbon.mod-left { + transition: background-color 0s linear 0s; +} +.minimal-focus-mode .workspace-ribbon.mod-left.is-collapsed { + border-color: transparent; + background-color: var(--background-primary); +} +.minimal-focus-mode .workspace-ribbon.mod-left.is-collapsed:before { + background-color: var(--background-primary); + border-color: transparent; +} +.minimal-focus-mode .workspace-ribbon.mod-left.is-collapsed .side-dock-actions, +.minimal-focus-mode .workspace-ribbon.mod-left.is-collapsed .side-dock-settings { + opacity: 0; + transition: opacity var(--focus-animation-duration) ease-in-out 0.1s; +} +.minimal-focus-mode .workspace-ribbon.mod-left.is-collapsed:hover .side-dock-actions, +.minimal-focus-mode .workspace-ribbon.mod-left.is-collapsed:hover .side-dock-settings { + opacity: 1; + transition: opacity var(--focus-animation-duration) ease-in-out 0.1s; +} +.minimal-focus-mode.borders-title .workspace-ribbon.mod-left.is-collapsed { + border-right: none; +} +.minimal-focus-mode .mod-root .sidebar-toggle-button.mod-right { + opacity: 0; + transition: opacity var(--focus-animation-duration) ease-in-out 0.5s; +} +.minimal-focus-mode:not(.minimal-status-off) .status-bar { + opacity: 0; + transition: opacity var(--focus-animation-duration) ease-in-out; +} +.minimal-focus-mode .status-bar:hover { + opacity: 1; + transition: opacity var(--focus-animation-duration) ease-in-out; +} +.minimal-focus-mode .mod-root .workspace-tabs { + position: relative; +} +.minimal-focus-mode .mod-root .workspace-tabs:before:hover { + background-color: blue; +} +.minimal-focus-mode .mod-root .workspace-tab-header-container { + height: 0px; + transition: all var(--focus-animation-duration) linear 0.6s; + --tab-outline-width: 0px; +} +.minimal-focus-mode .mod-root .workspace-tab-header-container .workspace-tab-header-container-inner, +.minimal-focus-mode .mod-root .workspace-tab-header-container .workspace-tab-header-new-tab, +.minimal-focus-mode .mod-root .workspace-tab-header-container .workspace-tab-header-tab-list { + opacity: 0; + transition: all var(--focus-animation-duration) linear 0.6s; +} +.minimal-focus-mode .mod-root .workspace-tab-header-container .workspace-tab-header-spacer:before { + width: 100%; + content: " "; + background-color: transparent; + height: 15px; + position: absolute; + z-index: 100; + top: 0; + left: 0; +} +.minimal-focus-mode .mod-root .workspace-tab-header-container .workspace-tab-header-container-inner .workspace-tab-header.is-active, +.minimal-focus-mode .mod-root .workspace-tab-header-container .workspace-tab-header-container-inner .workspace-tab-header.is-active::before, +.minimal-focus-mode .mod-root .workspace-tab-header-container .workspace-tab-header-container-inner .workspace-tab-header.is-active::after { + transition: all var(--focus-animation-duration) linear 0.6s; +} +.minimal-focus-mode .mod-root .workspace-tab-header-container:hover { + height: var(--header-height); + --tab-outline-width: 1px; + transition: all var(--focus-animation-duration) linear 0.05s; +} +.minimal-focus-mode .mod-root .workspace-tab-header-container:hover .sidebar-toggle-button.mod-right, +.minimal-focus-mode .mod-root .workspace-tab-header-container:hover .workspace-tab-header-container-inner, +.minimal-focus-mode .mod-root .workspace-tab-header-container:hover .workspace-tab-header-new-tab, +.minimal-focus-mode .mod-root .workspace-tab-header-container:hover .workspace-tab-header-tab-list { + opacity: 1; + transition: all var(--focus-animation-duration) linear 0.05s; +} +.minimal-focus-mode .mod-root .workspace-tab-header-container:hover .workspace-tab-header-container-inner .workspace-tab-header.is-active, +.minimal-focus-mode .mod-root .workspace-tab-header-container:hover .workspace-tab-header-container-inner .workspace-tab-header.is-active::before, +.minimal-focus-mode .mod-root .workspace-tab-header-container:hover .workspace-tab-header-container-inner .workspace-tab-header.is-active::after { + transition: all var(--focus-animation-duration) linear 0.05s; +} +.minimal-focus-mode.mod-macos:not(.is-fullscreen) .workspace:not(.is-left-sidedock-open) .mod-root .workspace-tabs.mod-stacked .workspace-tab-container .workspace-tab-header-inner { + padding-top: 30px; +} + +/* Collapse pane header */ +body.show-view-header .app-container .workspace-split.mod-root > .workspace-leaf .view-header { + transition: height var(--focus-animation-duration) linear 0.1s; +} + +body.minimal-focus-mode.show-view-header .mod-top-left-space .view-header { + padding-left: var(--frame-left-space); +} +body.minimal-focus-mode.show-view-header .mod-root .workspace-leaf .view-header { + height: 0em; + transition: all var(--focus-animation-duration) linear 0.5s; +} +body.minimal-focus-mode.show-view-header .view-header::after { + width: 100%; + content: " "; + background-color: transparent; + height: 40px; + position: absolute; + z-index: -9; + top: 0; +} +body.minimal-focus-mode.show-view-header .view-header-nav-buttons, +body.minimal-focus-mode.show-view-header .view-header-title-container, +body.minimal-focus-mode.show-view-header .view-actions { + opacity: 0; + transition: all var(--focus-animation-duration) linear 0.5s; +} +body.minimal-focus-mode.show-view-header .mod-root .workspace-tab-header-container:hover ~ .workspace-tab-container .view-header, +body.minimal-focus-mode.show-view-header .mod-root .workspace-leaf .view-header:hover, +body.minimal-focus-mode.show-view-header .mod-root .workspace-leaf .view-header:focus-within { + height: calc(var(--header-height) + 2px); + transition: all var(--focus-animation-duration) linear 0.1s; +} +body.minimal-focus-mode.show-view-header .mod-root .workspace-tab-header-container:hover ~ .workspace-tab-container .view-header .view-header-nav-buttons, +body.minimal-focus-mode.show-view-header .mod-root .workspace-tab-header-container:hover ~ .workspace-tab-container .view-header .view-actions, +body.minimal-focus-mode.show-view-header .mod-root .workspace-tab-header-container:hover ~ .workspace-tab-container .view-header .view-header-title-container, +body.minimal-focus-mode.show-view-header .view-header:hover .view-header-nav-buttons, +body.minimal-focus-mode.show-view-header .view-header:hover .view-actions, +body.minimal-focus-mode.show-view-header .view-header:hover .view-header-title-container, +body.minimal-focus-mode.show-view-header .view-header:focus-within .view-header-nav-buttons, +body.minimal-focus-mode.show-view-header .view-header:focus-within .view-actions, +body.minimal-focus-mode.show-view-header .view-header:focus-within .view-header-title-container { + opacity: 1; + transition: all var(--focus-animation-duration) linear 0.1s; +} +body.minimal-focus-mode.show-view-header .view-content { + height: 100%; +} + +/* Full width media */ +.full-width-media { + --iframe-width: 100%; +} +.full-width-media .markdown-source-view .image-embed img:not(.link-favicon):not(.emoji):not([width]), +.full-width-media .markdown-source-view img:not(.link-favicon):not(.emoji):not([width]), +.full-width-media .markdown-source-view .external-embed, +.full-width-media .markdown-source-view audio, +.full-width-media .markdown-source-view video, +.full-width-media .markdown-preview-view .image-embed img:not(.link-favicon):not(.emoji):not([width]), +.full-width-media .markdown-preview-view img:not(.link-favicon):not(.emoji):not([width]), +.full-width-media .markdown-preview-view .external-embed, +.full-width-media .markdown-preview-view audio, +.full-width-media .markdown-preview-view video { + width: 100%; +} +.full-width-media .image-embed:not([width]) .image-wrapper { + width: 100%; +} + +.markdown-source-view video, +.markdown-source-view img:not(.emoji), +.markdown-rendered video, +.markdown-rendered img:not(.emoji) { + border-radius: var(--image-radius); +} + +body:not(.is-mobile) div.image-embed:focus-within .image-wrapper::after { + border-radius: var(--image-radius); +} + +.tabular { + font-variant-numeric: tabular-nums; +} + +/* Table helper classes for alternate styles */ +/* MIT License | Copyright (c) Stephan Ango (@kepano) */ +.table-small .bases-view { + --bases-table-font-size: 85%; +} +.table-small table:not(.calendar) { + --table-text-size: 85%; +} + +.table-tiny .bases-view { + --bases-table-font-size: 75%; +} +.table-tiny table:not(.calendar) { + --table-text-size: 75%; +} + +.row-hover { + --table-edge-cell-padding-first: 8px; + --table-edge-cell-padding-last: 8px; + --table-row-background-hover: var(--hl1); + --table-row-alt-background-hover: var(--hl1); +} + +.row-alt { + --table-row-alt-background: var(--background-table-rows); + --table-row-alt-background-hover: var(--background-table-rows); + --table-edge-cell-padding-first: 8px; + --table-edge-cell-padding-last: 8px; +} + +.col-alt .markdown-rendered:not(.cards) { + --table-column-alt-background: var(--background-table-rows); +} + +.table-tabular table:not(.calendar) { + font-variant-numeric: tabular-nums; +} + +.table-center .markdown-preview-view .markdown-preview-sizer table, .table-center.markdown-preview-view .markdown-preview-sizer table, +.table-center .markdown-source-view.mod-cm6 .table-wrapper, .table-center.markdown-source-view.mod-cm6 .table-wrapper { + margin: 0 auto; +} + +.table-lines { + --table-border-width: var(--border-width); + --table-header-border-width: var(--border-width); + --table-column-first-border-width: var(--border-width); + --table-column-last-border-width:var(--border-width); + --table-row-last-border-width: var(--border-width); + --table-edge-cell-padding: 8px; + --table-edge-cell-padding-first: 8px; + --table-edge-cell-padding-last: 8px; + --table-add-button-border-width: 1px; +} + +.table-nowrap { + --table-white-space: nowrap; +} + +.table-nowrap-first table thead > tr > th:first-child, +.table-nowrap-first table tbody > tr > td:first-child { + --table-white-space: nowrap; +} + +.trim-cols, +.table-nowrap .table-wrap { + --table-white-space: normal; +} + +.table-numbers { + --table-numbers-padding-right: 0.5em; +} +.table-numbers table:not(.calendar) { + counter-reset: section; +} +.table-numbers table:not(.calendar) > thead > tr > th:first-child { + white-space: nowrap; +} +.table-numbers table:not(.calendar) > thead > tr > th:first-child::before { + content: " "; + padding-right: var(--table-numbers-padding-right); + display: inline-block; + min-width: 2em; +} +.table-numbers table:not(.calendar) > thead > tr > th:first-child .table-cell-wrapper, +.table-numbers table:not(.calendar) > thead > tr > th:first-child .cm-s-obsidian { + display: inline-block; + min-width: 10px; +} +.table-numbers table:not(.calendar):not(.table-editor) > tbody > tr > td:first-child, .table-numbers table:not(.calendar).table-editor > tbody > tr > td:first-child .table-cell-wrapper { + white-space: nowrap; +} +.table-numbers table:not(.calendar):not(.table-editor) > tbody > tr > td:first-child::before, .table-numbers table:not(.calendar).table-editor > tbody > tr > td:first-child .table-cell-wrapper::before { + counter-increment: section; + content: counter(section) " "; + text-align: center; + padding-right: var(--table-numbers-padding-right); + display: inline-block; + min-width: 2em; + color: var(--text-faint); + font-variant-numeric: tabular-nums; +} +.table-numbers table:not(.calendar):not(.table-editor) > tbody > tr > td:first-child .cm-s-obsidian, .table-numbers table:not(.calendar).table-editor > tbody > tr > td:first-child .table-cell-wrapper .cm-s-obsidian { + display: inline-block; + min-width: 10px; +} +.table-numbers .table-editor { + --table-numbers-padding-right: 0; +} + +.row-lines-off { + --table-row-last-border-width: 0; + --bases-table-row-border-width: 0; +} +.row-lines-off table:not(.calendar) tbody > tr > td, +.row-lines-off .table-view-table > tbody > tr > td, +.row-lines-off table:not(.calendar) tbody > tr:last-child > td { + border-bottom: none; +} + +.row-lines:not(.table-lines) .markdown-source-view:not(.cards), +.row-lines:not(.table-lines) .markdown-preview-view:not(.cards) { + --table-row-last-border-width: 0; +} +.row-lines:not(.table-lines) .markdown-source-view:not(.cards) table:not(.calendar) tbody > tr:not(:last-child) > td, +.row-lines:not(.table-lines) .markdown-source-view:not(.cards) .table-view-table > tbody > tr:not(:last-child) > td, +.row-lines:not(.table-lines) .markdown-preview-view:not(.cards) table:not(.calendar) tbody > tr:not(:last-child) > td, +.row-lines:not(.table-lines) .markdown-preview-view:not(.cards) .table-view-table > tbody > tr:not(:last-child) > td { + border-bottom: var(--table-border-width) solid var(--table-border-color); +} + +.col-lines { + --bases-table-column-border-width: var(--table-border-width); +} +.col-lines table:not(.calendar) tbody > tr > td:not(:last-child), +.col-lines .table-view-table thead > tr > th:not(:last-child), +.col-lines .table-view-table > tbody > tr > td:not(:last-child) { + border-right: var(--table-border-width) solid var(--background-modifier-border); +} + +/* Dark mode images */ +/* MIT License | Copyright (c) Stephan Ango (@kepano) */ +:root { + --image-mix: normal ; +} + +.image-blend-light { + --image-mix: multiply; +} + +.theme-dark .markdown-source-view img, +.theme-dark .markdown-preview-view img { + opacity: var(--image-muted); + transition: opacity 0.25s linear; +} + +@media print { + body { + --image-muted: 1; + } +} +.theme-dark .print-preview img, +.theme-dark .markdown-source-view img:hover, +.theme-dark .markdown-preview-view img:hover { + opacity: 1; + transition: opacity 0.25s linear; +} + +.theme-light img { + mix-blend-mode: var(--image-mix); +} + +/* Invert */ +div[src$="#blend"], +div[src$="#invert"] { + background-color: var(--background-primary); +} + +.theme-dark img[src$="#invert"], +.theme-dark div[src$="#invert"] img, +.theme-dark span[src$="#invert"] img { + filter: invert(1) hue-rotate(180deg); + mix-blend-mode: screen; +} +.theme-dark img[src$="#blend"], +.theme-dark div[src$="#blend"] img, +.theme-dark span[src$="#blend"] img { + mix-blend-mode: screen; +} +.theme-dark .img-blend { + mix-blend-mode: screen; +} + +.theme-light img[src$="#blend"], +.theme-light div[src$="#blend"] img, +.theme-light span[src$="#blend"] img { + mix-blend-mode: multiply; +} +.theme-light img[src$="#invertW"], +.theme-light div[src$="#invertW"] img, +.theme-light span[src$=invertW] img { + filter: invert(1) hue-rotate(180deg); +} +.theme-light .img-blend { + mix-blend-mode: multiply; +} + +/* Circle */ +img[src$="#circle"]:not(.emoji), +span[src$="#circle"] img:not(.emoji), +span[src$="#round"] img:not(.emoji) { + border-radius: 50%; + aspect-ratio: 1/1; +} + +/* Outline */ +img[src$="#outline"], +div[src$="#outline"] img, +span[src$="#outline"] img { + border: 1px solid var(--ui1); +} + +/* Interface */ +img[src$="#interface"], +span[src$="#interface"] img { + border: 1px solid var(--ui1); + box-shadow: 0px 0.5px 0.9px rgba(0, 0, 0, 0.021), 0px 1.3px 2.5px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.039), 0px 10px 20px rgba(0, 0, 0, 0.06); + margin-top: 10px; + margin-bottom: 15px; + border-radius: var(--radius-m); +} + +/* MIT License | Copyright (c) Stephan Ango (@kepano) + +Image Grid snippet for Obsidian + +author: @kepano +version: 4.0.0 + +Support my work: +https://github.com/sponsors/kepano + +*/ +/* Revamped for Obsidian 1.1.9+ using :has() */ +body { + --image-grid-fit: cover; + --image-grid-background: transparent; + --img-grid-gap: 0.5rem; +} + +@media (max-width: 400pt) { + body { + --img-grid-gap: 0.25rem; + } +} +.img-grid-ratio { + --image-grid-fit: contain; +} + +.img-grid .image-embed.is-loaded { + line-height: 0; + display: flex; + align-items: stretch; +} +.img-grid .image-embed.is-loaded img { + background-color: var(--image-grid-background); +} +.img-grid .image-embed.is-loaded img:active { + background-color: transparent; +} +.img-grid .markdown-preview-section > div:has(img) p:empty, +.img-grid .markdown-preview-section > div:has(img) img ~ br, +.img-grid .markdown-preview-section > div:has(img) .image-embed ~ br { + display: none; +} +.img-grid .markdown-preview-section :is(div, p):has(> :is(.image-embed, img) ~ :is(.image-embed, img)) { + display: grid; + margin-block-start: var(--img-grid-gap); + margin-block-end: var(--img-grid-gap); + grid-column-gap: var(--img-grid-gap); + grid-row-gap: 0; + grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); +} +.img-grid .markdown-preview-section :is(div, p):has(> :is(.image-embed, img) ~ :is(.image-embed, img)) > img { + object-fit: var(--image-grid-fit); + align-self: stretch; +} +.img-grid .markdown-preview-section :is(div, p):has(> :is(.image-embed, img) ~ :is(.image-embed, img)) > .internal-embed img { + object-fit: var(--image-grid-fit); + align-self: center; +} +.img-grid .markdown-preview-section > div:has(img) > p { + display: grid; + margin-block-start: var(--img-grid-gap); + margin-block-end: var(--img-grid-gap); + grid-column-gap: var(--img-grid-gap); + grid-row-gap: 0; + grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); +} +.img-grid .markdown-preview-section > div:has(img) > p > br { + display: none; +} + +/* MIT License | Copyright (c) Stephan Ango (@kepano) + +Labeled Nav snippet for Obsidian + +author: @kepano +version: 2.0.0 + +Support my work: +https://github.com/sponsors/kepano + +*/ +.labeled-nav.mod-windows, +.labeled-nav.is-fullscreen:not(.colorful-frame) { + --labeled-nav-top-margin: 0; +} + +.labeled-nav { + --labeled-nav-top-margin: var(--header-height); +} +.labeled-nav.is-translucent .mod-left-split .mod-top .workspace-tab-header-container .workspace-tab-header-container-inner { + background-color: transparent; +} +.labeled-nav.is-hidden-frameless:not(.is-fullscreen) .mod-left-split .workspace-tabs.mod-top-left-space .workspace-tab-header-container { + padding-left: 0; +} +.labeled-nav.mod-macos .mod-left-split .mod-top .workspace-tab-header-container:before, .labeled-nav.mod-macos.is-hidden-frameless:not(.is-fullscreen) .mod-left-split .mod-top .workspace-tab-header-container:before { + -webkit-app-region: drag; + position: absolute; + width: calc(100% - var(--divider-width)); + height: calc(var(--header-height) - var(--tab-outline-width)); + border-bottom: 0px solid var(--tab-outline-color); +} +.labeled-nav.mod-macos.is-hidden-frameless:not(.is-fullscreen) .workspace-ribbon.mod-left:not(.is-collapsed) { + border: none; + --tab-outline-width: 0px; +} +.labeled-nav:not(.is-hidden-frameless) .mod-left-split .mod-top .workspace-tab-header-container:before, .labeled-nav.mod-macos:not(.hider-ribbon) .mod-left-split .mod-top .workspace-tab-header-container:before, .labeled-nav.colorful-frame.is-hidden-frameless:not(.is-fullscreen) .mod-left-split .mod-top .workspace-tab-header-container:before { + border-bottom: var(--tab-outline-width) solid var(--tab-outline-color); +} +.labeled-nav:not(.is-hidden-frameless) .workspace-ribbon.mod-left:not(.is-collapsed), .labeled-nav.mod-macos:not(.hider-ribbon) .workspace-ribbon.mod-left:not(.is-collapsed), .labeled-nav.colorful-frame.is-hidden-frameless:not(.is-fullscreen) .workspace-ribbon.mod-left:not(.is-collapsed) { + --tab-outline-width: 1px; +} +.labeled-nav:not(.is-hidden-frameless) .mod-left-split .mod-top .workspace-tab-header-container:before { + position: absolute; + top: 0; + content: " "; +} +.labeled-nav.hider-ribbon.mod-macos.is-hidden-frameless:not(.is-fullscreen):not(.is-popout-window) .mod-left-split:not(.is-sidedock-collapsed) .workspace-tabs.mod-top-left-space .workspace-tab-header-container { + padding-left: 0; +} +.labeled-nav .mod-left-split .mod-top .workspace-tab-header-spacer { + display: none; +} +.labeled-nav .mod-left-split .mod-top .workspace-tab-header-inner-title { + display: inline-block; + font-weight: 500; + font-size: var(--font-adaptive-smaller); +} +.labeled-nav .mod-left-split .mod-top .workspace-tab-header-container { + position: relative; + flex-direction: column-reverse !important; + height: auto; + width: 100%; +} +.labeled-nav .mod-left-split .mod-top .workspace-tab-header-container .sidebar-toggle-button.mod-left { + position: absolute; + justify-content: flex-end; + padding-right: var(--size-4-2); + top: 0; + right: 0; +} +.labeled-nav .mod-left-split .mod-top .workspace-tab-header-container .workspace-tab-header-container-inner { + padding: var(--size-4-2) var(--size-4-2); + margin-top: var(--labeled-nav-top-margin); + flex-direction: column !important; + background-color: var(--background-secondary); +} +.labeled-nav .mod-left-split .mod-top .workspace-tab-header-container .workspace-tab-container-inner { + flex-grow: 1; + gap: 0; + padding: var(--size-4-2) var(--size-4-3); +} +.labeled-nav .mod-left-split .mod-top .workspace-tab-header { + --icon-color: var(--text-muted); + --tab-text-color: var(--text-muted); + --tab-text-color-focused: var(--text-muted); + padding: 0; + margin-bottom: 2px; + border: none; + height: auto; +} +.labeled-nav .mod-left-split .mod-top .workspace-tab-header.is-active:not(:hover) { + background-color: transparent; +} +.labeled-nav .mod-left-split .mod-top .workspace-tab-header.is-active, .labeled-nav .mod-left-split .mod-top .workspace-tab-header:hover { + opacity: 1; + --tab-text-color-active: var(--text-normal); + --tab-text-color-focused: var(--text-normal); + --tab-text-color-focused-active: var(--text-normal); + --tab-text-color-focused-active-current: var(--text-normal); + --icon-color: var(--text-normal); +} +.labeled-nav .mod-left-split .mod-top .workspace-tab-header .workspace-tab-header-inner { + gap: var(--size-2-3); + padding: var(--size-4-1) var(--size-4-2); + box-shadow: none; + border: none; +} +.labeled-nav .mod-left-split .mod-top .workspace-tab-header.has-active-menu:hover, +.labeled-nav .mod-left-split .mod-top .workspace-tab-header.is-active:hover { + background-color: transparent; +} +.labeled-nav .mod-left-split .mod-top .workspace-tab-header.is-active:hover .workspace-tab-header-inner, +.labeled-nav .mod-left-split .mod-top .workspace-tab-header:not(.is-active):hover .workspace-tab-header-inner { + background-color: var(--nav-item-background-hover); +} +.labeled-nav .mod-left-split .mod-top .workspace-tab-header:hover .workspace-tab-header-inner-icon, +.labeled-nav .mod-left-split .mod-top .workspace-tab-header.is-active .workspace-tab-header-inner-icon { + color: var(--icon-color-active); +} +.labeled-nav .mod-left-split .mod-top .workspace-tab-header-container { + border: none; + padding: 0; +} + +/* Links and underline handling*/ +body:not(.links-int-on) { + --link-decoration: none; +} + +body:not(.links-ext-on) { + --link-external-decoration: none; +} + +body:not(.sidebar-color) .mod-right-split { + --background-secondary: var(--background-primary); +} +body:not(.sidebar-color) .mod-right-split :not(.mod-top) .workspace-tab-header-container { + --tab-container-background: var(--background-primary); +} + +/* Main tabs */ +.theme-light, +.theme-dark { + --minimal-tab-text-color: var(--tx2); + --minimal-tab-text-color-active: var(--tx1); +} + +.workspace-tabs:not(.mod-stacked) { + --tab-text-color: var(--minimal-tab-text-color); + --tab-text-color-focused: var(--minimal-tab-text-color); + --tab-text-color-active: var(--minimal-tab-text-color-active); + --tab-text-color-focused-active: var(--minimal-tab-text-color-active); + --tab-text-color-focused-active-current: var(--minimal-tab-text-color-active); +} + +.tabs-plain-square .mod-root { + --tab-curve: 0; + --tab-radius: 0; + --tab-radius-active: 0; +} +.tabs-plain-square .mod-root .workspace-tab-header-container { + padding-left: 0; + padding-right: 0; +} +.tabs-plain-square .mod-root .workspace-tab-header-container-inner { + margin-top: -1px; + margin-left: -15px; +} +.tabs-plain-square .mod-root .workspace-tab-header { + padding: 0; +} +.tabs-plain-square .mod-root .workspace-tab-header-inner { + padding: 0 8px; +} + +.tabs-square .mod-root { + --tab-curve: 0; + --tab-radius: 0; + --tab-radius-active: 0; +} + +.tabs-underline .mod-root { + --tab-curve: 0; + --tab-radius: 0; + --tab-radius-active: 0; + --tab-outline-width: 0px; + --tab-background-active: transparent; +} +.tabs-underline .mod-root .workspace-tab-header-container { + border-bottom: 1px solid var(--divider-color); +} +.tabs-underline .mod-root .workspace-tab-header { + border-bottom: 2px solid transparent; +} +.tabs-underline .mod-root .workspace-tab-header:hover { + border-bottom: 2px solid var(--ui2); +} +.tabs-underline .mod-root .workspace-tab-header:hover .workspace-tab-header-inner { + background-color: transparent; +} +.tabs-underline .mod-root .workspace-tab-header.is-active { + border-bottom: 2px solid var(--ax3); +} +.tabs-underline .mod-root .workspace-tab-header-inner:hover { + background-color: transparent; +} + +/* Remove underline on lower sidebar tabs */ +body:not(.sidebar-tabs-underline):not(.sidebar-tabs-index):not(.sidebar-tabs-square) .workspace > .workspace-split:not(.mod-root) .workspace-tabs:not(.mod-top) .workspace-tab-header-container { + --tab-outline-width: 0; +} + +/* Safari/Firefox style */ +.tabs-modern.colorful-frame .mod-root .mod-top.workspace-tabs:not(.mod-stacked) { + --tab-background: var(--frame-outline-color); + --tab-outline-width: 1px; +} +.tabs-modern.colorful-frame .mod-root .mod-top.workspace-tabs:not(.mod-stacked) .workspace-tab-header:hover .workspace-tab-header-inner-close-button, +.tabs-modern.colorful-frame .mod-root .mod-top.workspace-tabs:not(.mod-stacked) .workspace-tab-header.is-active .workspace-tab-header-inner-close-button { + color: var(--minimal-tab-text-color-active); +} +.tabs-modern.minimal-focus-mode .mod-root .workspace-tab-header-container:hover { + --tab-outline-width: 0px; +} +.tabs-modern .mod-root { + --tab-container-background: var(--background-primary); +} +.tabs-modern .mod-root .workspace-tabs:not(.mod-stacked) { + --tab-background: var(--background-modifier-hover); + --tab-height: calc(var(--header-height) - 14px); + --tab-outline-width: 0px; +} +.tabs-modern .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header::before, +.tabs-modern .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header::after, +.tabs-modern .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header-inner::after { + display: none; +} +.tabs-modern .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header-container-inner { + align-items: center; + margin: 0; + padding: 2px var(--size-4-2) 0 var(--size-4-1); +} +.tabs-modern .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header-inner-title { + text-overflow: ellipsis; + -webkit-mask-image: none; +} +.tabs-modern .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header { + background: transparent; + border-radius: 5px; + border: none; + box-shadow: none; + height: var(--tab-height); + margin-left: var(--size-4-1); + padding: 0; +} +.tabs-modern .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header.is-active .workspace-tab-header-inner-title { + color: var(--tab-text-color-active); +} +.tabs-modern .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header:hover, .tabs-modern .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header.is-active.mod-active { + opacity: 1; + background-color: var(--tab-background); +} +.tabs-modern .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header-new-tab { + margin-inline-end: 0; +} +.tabs-modern .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header-inner { + padding: 0 var(--size-4-1) 0 var(--size-4-2); + border: 1px solid transparent; +} +.tabs-modern .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header:not(.is-active):hover .workspace-tab-header-inner { + background-color: transparent; +} +.tabs-modern .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header:not(:hover):not(.mod-active) .workspace-tab-header-inner, +.tabs-modern .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header.is-active:not(.mod-active) .workspace-tab-header-inner { + border: 1px solid var(--tab-outline-color); +} + +/* Sidebar tabs ------------ */ +.tab-names-on .workspace-split:not(.mod-root) .workspace-tab-header-container-inner { + --sidebar-tab-text-display: static; +} +.tab-names-on .workspace-split:not(.mod-root) .workspace-tab-header-container-inner .workspace-tab-header-inner-title { + font-weight: 500; +} +.tab-names-on .workspace-split:not(.mod-root) .workspace-tab-header-container-inner .workspace-tab-header-inner { + gap: var(--size-2-3); +} + +.tab-names-single .workspace > .workspace-split:not(.mod-root) .workspace-tab-header-container-inner .workspace-tab-header:only-child { + --sidebar-tab-text-display: static; + background-color: transparent; +} +.tab-names-single .workspace > .workspace-split:not(.mod-root) .workspace-tab-header-container-inner .workspace-tab-header:only-child .workspace-tab-header-inner-title { + font-weight: 500; +} +.tab-names-single .workspace > .workspace-split:not(.mod-root) .workspace-tab-header-container-inner .workspace-tab-header:only-child .workspace-tab-header-inner { + gap: var(--size-2-3); +} + +.tabs-modern.sidebar-tabs-wide .mod-right-split, +.tabs-modern.sidebar-tabs-default .mod-right-split { + --tab-outline-width: 0; +} + +/* Underline */ +.sidebar-tabs-underline:not(.labeled-nav) .mod-left-split .workspace-tab-header-spacer, .sidebar-tabs-underline.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header-spacer, +.sidebar-tabs-underline .mod-right-split .workspace-tab-header-spacer { + display: none; +} +.sidebar-tabs-underline:not(.labeled-nav) .mod-left-split .workspace-tab-header-container, .sidebar-tabs-underline.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header-container, +.sidebar-tabs-underline .mod-right-split .workspace-tab-header-container { + padding-right: 0; +} +.sidebar-tabs-underline:not(.labeled-nav) .mod-left-split .workspace-tab-header-container-inner, .sidebar-tabs-underline.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header-container-inner, +.sidebar-tabs-underline .mod-right-split .workspace-tab-header-container-inner { + padding: 0; + margin: 0; + flex-grow: 1; + gap: 0; +} +.sidebar-tabs-underline:not(.labeled-nav) .mod-left-split .workspace-tab-header-container .workspace-tab-header, .sidebar-tabs-underline.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header-container .workspace-tab-header, +.sidebar-tabs-underline .mod-right-split .workspace-tab-header-container .workspace-tab-header { + flex-grow: 1; + border-radius: 0; + max-width: 100px; +} +.sidebar-tabs-underline:not(.labeled-nav) .mod-left-split .workspace-tab-header-container .workspace-tab-header:hover, .sidebar-tabs-underline:not(.labeled-nav) .mod-left-split .workspace-tab-header-container .workspace-tab-header.is-active, .sidebar-tabs-underline.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header-container .workspace-tab-header:hover, .sidebar-tabs-underline.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header-container .workspace-tab-header.is-active, +.sidebar-tabs-underline .mod-right-split .workspace-tab-header-container .workspace-tab-header:hover, +.sidebar-tabs-underline .mod-right-split .workspace-tab-header-container .workspace-tab-header.is-active { + background-color: transparent; +} +.sidebar-tabs-underline:not(.labeled-nav) .mod-left-split .workspace-tab-header-container .workspace-tab-header:hover .workspace-tab-header-inner, .sidebar-tabs-underline:not(.labeled-nav) .mod-left-split .workspace-tab-header-container .workspace-tab-header.is-active .workspace-tab-header-inner, .sidebar-tabs-underline.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header-container .workspace-tab-header:hover .workspace-tab-header-inner, .sidebar-tabs-underline.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header-container .workspace-tab-header.is-active .workspace-tab-header-inner, +.sidebar-tabs-underline .mod-right-split .workspace-tab-header-container .workspace-tab-header:hover .workspace-tab-header-inner, +.sidebar-tabs-underline .mod-right-split .workspace-tab-header-container .workspace-tab-header.is-active .workspace-tab-header-inner { + background-color: transparent; +} +.sidebar-tabs-underline:not(.labeled-nav) .mod-left-split .workspace-tab-header-container .workspace-tab-header .workspace-tab-header-inner, .sidebar-tabs-underline.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header-container .workspace-tab-header .workspace-tab-header-inner, +.sidebar-tabs-underline .mod-right-split .workspace-tab-header-container .workspace-tab-header .workspace-tab-header-inner { + border-bottom: 2px solid transparent; + border-radius: 0; +} +.sidebar-tabs-underline:not(.labeled-nav) .mod-left-split .workspace-tab-header-container .workspace-tab-header .workspace-tab-header-inner:hover, .sidebar-tabs-underline.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header-container .workspace-tab-header .workspace-tab-header-inner:hover, +.sidebar-tabs-underline .mod-right-split .workspace-tab-header-container .workspace-tab-header .workspace-tab-header-inner:hover { + border-color: var(--ui2); +} +.sidebar-tabs-underline:not(.labeled-nav) .mod-left-split .workspace-tab-header-container .workspace-tab-header.is-active .workspace-tab-header-inner, .sidebar-tabs-underline.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header-container .workspace-tab-header.is-active .workspace-tab-header-inner, +.sidebar-tabs-underline .mod-right-split .workspace-tab-header-container .workspace-tab-header.is-active .workspace-tab-header-inner { + border-color: var(--ax3); + padding-top: 1px; +} + +/* Sidebar index style */ +.sidebar-tabs-square .mod-left-split, +.sidebar-tabs-square .mod-right-split { + --tab-radius: 0px; +} + +.sidebar-tabs-plain-square .mod-left-split, +.sidebar-tabs-plain-square .mod-right-split { + --tab-radius: 0px; +} +.sidebar-tabs-plain-square:not(.labeled-nav) .mod-left-split, .sidebar-tabs-plain-square.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) { + --tab-background-active: var(--background-secondary); +} +.sidebar-tabs-plain-square:not(.labeled-nav) .mod-left-split .workspace-tab-header-container, .sidebar-tabs-plain-square.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header-container, +.sidebar-tabs-plain-square .mod-right-split .workspace-tab-header-container { + padding-left: 0; +} +.sidebar-tabs-plain-square:not(.labeled-nav) .mod-left-split .workspace-tab-header-container-inner, .sidebar-tabs-plain-square.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header-container-inner, +.sidebar-tabs-plain-square .mod-right-split .workspace-tab-header-container-inner { + padding: 0; + margin: 0 0 calc(var(--tab-outline-width) * -1); + flex-grow: 1; + gap: 0; +} +.sidebar-tabs-plain-square:not(.labeled-nav) .mod-left-split .workspace-tab-header, .sidebar-tabs-plain-square.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header, +.sidebar-tabs-plain-square .mod-right-split .workspace-tab-header { + flex-grow: 1; + max-width: 100px; + border-radius: var(--tab-radius) var(--tab-radius) 0 0; +} +.sidebar-tabs-plain-square:not(.labeled-nav) .mod-left-split .workspace-tab-header.is-active, .sidebar-tabs-plain-square.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header.is-active, +.sidebar-tabs-plain-square .mod-right-split .workspace-tab-header.is-active { + box-shadow: 0 0 0 var(--tab-outline-width) var(--tab-outline-color); + color: var(--tab-text-color-active); + background-color: var(--tab-background-active); +} + +.sidebar-tabs-square:not(.labeled-nav) .mod-left-split, .sidebar-tabs-square.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top), +.sidebar-tabs-index:not(.labeled-nav) .mod-left-split, +.sidebar-tabs-index.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) { + --tab-background-active: var(--background-secondary); +} +.sidebar-tabs-square:not(.labeled-nav) .mod-left-split .workspace-tab-header-container-inner, .sidebar-tabs-square.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header-container-inner, +.sidebar-tabs-square .mod-right-split .workspace-tab-header-container-inner, +.sidebar-tabs-index:not(.labeled-nav) .mod-left-split .workspace-tab-header-container-inner, +.sidebar-tabs-index.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header-container-inner, +.sidebar-tabs-index .mod-right-split .workspace-tab-header-container-inner { + padding: 1px var(--size-4-2) 0; + margin: 6px 0 calc(var(--tab-outline-width) * -1); + flex-grow: 1; +} +.sidebar-tabs-square:not(.labeled-nav) .mod-left-split .workspace-tab-header, .sidebar-tabs-square.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header, +.sidebar-tabs-square .mod-right-split .workspace-tab-header, +.sidebar-tabs-index:not(.labeled-nav) .mod-left-split .workspace-tab-header, +.sidebar-tabs-index.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header, +.sidebar-tabs-index .mod-right-split .workspace-tab-header { + flex-grow: 1; + max-width: 100px; + border-radius: var(--tab-radius) var(--tab-radius) 0 0; +} +.sidebar-tabs-square:not(.labeled-nav) .mod-left-split .workspace-tab-header.is-active, .sidebar-tabs-square.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header.is-active, +.sidebar-tabs-square .mod-right-split .workspace-tab-header.is-active, +.sidebar-tabs-index:not(.labeled-nav) .mod-left-split .workspace-tab-header.is-active, +.sidebar-tabs-index.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header.is-active, +.sidebar-tabs-index .mod-right-split .workspace-tab-header.is-active { + box-shadow: 0 0 0 var(--tab-outline-width) var(--tab-outline-color); + color: var(--tab-text-color-active); + background-color: var(--tab-background-active); +} + +/* Modern Wide */ +.sidebar-tabs-wide:not(.labeled-nav) .mod-left-split .workspace-tab-header-container-inner, .sidebar-tabs-wide.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header-container-inner, +.sidebar-tabs-wide .mod-right-split .workspace-tab-header-container-inner { + flex-grow: 1; + border: 1px solid var(--tab-outline-color); + padding: 3px; + margin: 6px 8px; + border-radius: 4px; +} +.sidebar-tabs-wide:not(.labeled-nav) .mod-left-split .workspace-tab-header, .sidebar-tabs-wide.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header, +.sidebar-tabs-wide .mod-right-split .workspace-tab-header { + flex-grow: 1; +} +.sidebar-tabs-wide:not(.labeled-nav) .mod-left-split .workspace-tab-header.is-active, .sidebar-tabs-wide.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header.is-active, +.sidebar-tabs-wide .mod-right-split .workspace-tab-header.is-active { + border-color: transparent; +} +.sidebar-tabs-wide:not(.labeled-nav) .mod-left-split .workspace-tab-header-container, .sidebar-tabs-wide.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header-container, +.sidebar-tabs-wide .mod-right-split .workspace-tab-header-container { + padding-right: 0; +} +.sidebar-tabs-wide:not(.labeled-nav) .mod-left-split .workspace-tab-header-spacer, .sidebar-tabs-wide.labeled-nav .mod-left-split .workspace-tabs:not(.mod-top) .workspace-tab-header-spacer, +.sidebar-tabs-wide .mod-right-split .workspace-tab-header-spacer { + display: none; +} + +/* Turn off file name trimming */ +.full-file-names { + --nav-item-white-space: normal; +} + +body:not(.full-file-names) { + --nav-item-white-space: nowrap; +} +body:not(.full-file-names) .tree-item-self { + white-space: nowrap; +} +body:not(.full-file-names) .tree-item-inner { + text-overflow: ellipsis; + overflow: hidden; +} + +/* Underline headings */ +.theme-light, +.theme-dark { + --h1l:var(--ui1); + --h2l:var(--ui1); + --h3l:var(--ui1); + --h4l:var(--ui1); + --h5l:var(--ui1); + --h6l:var(--ui1); +} + +.h1-l .markdown-reading-view h1:not(.embedded-note-title), +.h1-l .mod-cm6 .cm-editor .HyperMD-header-1 { + border-bottom: 1px solid var(--h1l); + padding-bottom: 0.4em; + margin-block-end: 0.6em; +} + +.h2-l .markdown-reading-view h2, +.h2-l .mod-cm6 .cm-editor .HyperMD-header-2 { + border-bottom: 1px solid var(--h2l); + padding-bottom: 0.4em; + margin-block-end: 0.6em; +} + +.h3-l .markdown-reading-view h3, +.h3-l .mod-cm6 .cm-editor .HyperMD-header-3 { + border-bottom: 1px solid var(--h3l); + padding-bottom: 0.4em; + margin-block-end: 0.6em; +} + +.h4-l .markdown-reading-view h4, +.h4-l .mod-cm6 .cm-editor .HyperMD-header-4 { + border-bottom: 1px solid var(--h4l); + padding-bottom: 0.4em; + margin-block-end: 0.6em; +} + +.h5-l .markdown-reading-view h5, +.h5-l .mod-cm6 .cm-editor .HyperMD-header-5 { + border-bottom: 1px solid var(--h5l); + padding-bottom: 0.4em; + margin-block-end: 0.6em; +} + +.h6-l .markdown-reading-view h6, +.h6-l .mod-cm6 .cm-editor .HyperMD-header-6 { + border-bottom: 1px solid var(--h6l); + padding-bottom: 0.4em; + margin-block-end: 0.6em; +} + +/* Tablet */ +.is-tablet .workspace-drawer { + padding-top: 0px; +} +.is-tablet .workspace-drawer:not(.is-pinned) { + margin: 30px 16px 0; + height: calc(100vh - 48px); + border-radius: 15px; + border: none; +} +.is-tablet .workspace-drawer-ribbon { + background-color: var(--background-primary); + border-right: 1px solid var(--background-modifier-border); +} +.is-tablet .workspace-drawer-header, +.is-tablet .workspace-drawer.is-pinned .workspace-drawer-header { + padding-top: var(--size-4-4); +} +.is-tablet .workspace-drawer-header-icon { + margin-inline-start: 0; +} + +.is-mobile { + --font-bold: 600; + --font-ui-medium: var(--font-adaptive-small); + --interactive-normal: var(--background-secondary); + --background-modifier-form-field: var(--background-secondary); + --background-modifier-form-field-highlighted: var(--background-secondary); +} +.is-mobile .markdown-source-view.mod-cm6 .cm-gutters { + margin-left: 0; +} +.is-mobile.theme-light .menu { + --interactive-normal: var(--background-modifier-hover); +} +.is-mobile.theme-light.minimal-light-tonal .workspace-drawer { + --interactive-normal: rgb(from color-mix(in srgb, var(--bg2), var(--bg3))r g b / 1); +} +.is-mobile .workspace-drawer.mod-left.is-pinned { + width: var(--mobile-left-sidebar-width); + min-width: 150pt; +} +.is-mobile .workspace-drawer.mod-right.is-pinned { + width: var(--mobile-right-sidebar-width); + min-width: 150pt; +} + +.is-phone { + --bases-embed-width: 100%; + --bases-embed-transform: none; +} + +/* Core plugins */ +/* Backlink pane */ +.outgoing-link-pane > .tree-item-self:hover, +.outgoing-link-pane > .tree-item-self, +.backlink-pane > .tree-item-self:hover, +.backlink-pane > .tree-item-self { + color: var(--text-muted); + text-transform: uppercase; + letter-spacing: 0.05em; + font-size: var(--font-adaptive-smallest); + font-weight: 500; +} + +body { + --canvas-dot-pattern: var(--background-modifier-border-hover); +} + +.canvas-node-label { + font-size: var(--font-adaptive-small); +} + +.canvas-edges :not(.is-themed) path.canvas-display-path { + stroke: var(--background-modifier-border-focus); +} + +.canvas-edges :not(.is-themed) polyline.canvas-path-end { + stroke: var(--background-modifier-border-focus); + fill: var(--background-modifier-border-focus); +} + +.canvas-node-container { + border: 1.5px solid var(--background-modifier-border-focus); +} + +.node-insert-event.mod-inside-iframe { + --max-width: 100%; + --folding-offset: 0px; +} +.node-insert-event.mod-inside-iframe .cm-editor .cm-content { + padding-top: 0; +} + +/* File browser */ +.hider-file-nav-header:not(.labeled-nav) .nav-files-container { + padding-top: var(--size-4-3); +} + +.is-mobile .nav-folder.mod-root > .nav-folder-title .nav-folder-title-content { + display: none; +} + +body:not(.is-mobile) .nav-folder.mod-root > .nav-folder-title .nav-folder-title-content { + font-weight: 500; + text-transform: uppercase; + letter-spacing: 0.05em; + color: var(--text-muted); + font-size: var(--font-adaptive-smallest); +} + +body:not(.is-mobile) .nav-buttons-container { + justify-content: flex-start; +} + +.nav-file-tag { + padding-top: 0.2em; + background-color: transparent; + color: var(--text-faint); +} + +.nav-file:hover .nav-file-tag, +.nav-file .is-active .nav-file-tag { + color: var(--text-muted); +} + +input.prompt-input, +input.prompt-input:hover, +input.prompt-input:focus, +input.prompt-input:focus-visible { + border-color: rgba(var(--mono-rgb-100), 0.05); +} + +.is-mobile { + /* Mobile publish */ +} +.is-mobile .mod-publish .modal-content { + display: unset; + padding: 10px; + margin-bottom: 120px; + overflow-x: hidden; +} +.is-mobile .mod-publish .button-container, +.is-mobile .modal.mod-publish .modal-button-container { + padding: 10px 15px 30px; + margin-left: 0px; + left: 0; +} +.is-mobile .modal.mod-publish .modal-title { + padding: 10px 20px; + margin: 0 -10px; + border-bottom: 1px solid var(--background-modifier-border); +} +.is-mobile .publish-site-settings-container { + margin-right: 0; + padding: 0; +} +.is-mobile .modal.mod-publish .modal-content .publish-sections-container { + margin-right: 0; + padding-right: 0; +} +.is-mobile { + /* Phone */ +} +@media (max-width: 400pt) { + .is-mobile .publish-section-header, + .is-mobile .publish-changes-info { + flex-wrap: wrap; + border: none; + } + .is-mobile .publish-changes-info .publish-changes-add-linked-btn { + flex-basis: 100%; + margin-top: 10px; + } + .is-mobile .publish-section-header-text { + flex-basis: 100%; + margin-bottom: 10px; + margin-left: 20px; + margin-top: -8px; + } + .is-mobile .publish-section { + background: var(--background-secondary); + border-radius: 10px; + padding: 12px 12px 1px; + } + .is-mobile .publish-changes-switch-site { + flex-grow: 0; + margin-right: 10px; + } +} + +.release-notes-view .cm-scroller.is-readable-line-width { + width: var(--line-width); + max-width: var(--max-width); + margin: 0 auto; +} + +.search-results-info { + border-bottom: none; +} + +.workspace-leaf-content[data-type=sync] .tree-item.nav-folder .nav-folder-title { + color: var(--text-muted); + text-transform: uppercase; + letter-spacing: 0.05em; + font-size: var(--font-adaptive-smallest); + font-weight: 500; + margin-bottom: 4px; +} +.workspace-leaf-content[data-type=sync] .tree-item.nav-folder .nav-folder-title:hover { + color: var(--text-normal); +} +.workspace-leaf-content[data-type=sync] .tree-item.nav-folder.is-collapsed .nav-folder-title { + color: var(--text-faint); +} +.workspace-leaf-content[data-type=sync] .tree-item.nav-folder.is-collapsed .nav-folder-title:hover { + color: var(--text-muted); +} + +/* Community plugins */ +/* Calendar plugin */ +.workspace-leaf-content[data-type=calendar] .view-content { + padding: 5px 0 0; +} + +.mod-root #calendar-container { + width: var(--line-width); + max-width: var(--max-width); + margin: 0 auto; + padding: 0; +} + +body { + --calendar-dot-active: var(--text-faint); + --calendar-dot-today: var(--text-accent); +} + +#calendar-container { + padding: 0 var(--size-4-4) var(--size-4-1); + --color-background-day-empty:var(--background-secondary-alt); + --color-background-day-active:var(--background-modifier-hover); + --color-background-day-hover:var(--background-modifier-hover); + --color-dot:var(--text-faint); + --calendar-text-active: inherit; + --color-text-title:var(--text-normal); + --color-text-heading:var(--text-muted); + --color-text-day:var(--text-normal); + --color-text-today:var(--text-normal); + --color-arrow:var(--text-faint); + --color-background-day-empty:transparent; +} +#calendar-container .table { + border-collapse: separate; + table-layout: fixed; +} +#calendar-container h2 { + font-weight: 400; + font-size: var(--h2); +} +#calendar-container .arrow { + cursor: var(--cursor); + width: 22px; + border-radius: 4px; + padding: 3px 7px; +} +#calendar-container .arrow svg { + width: 12px; + height: 12px; + color: var(--text-faint); + opacity: 0.7; +} +#calendar-container .arrow:hover { + fill: var(--text-muted); + color: var(--text-muted); + background-color: var(--background-modifier-hover); +} +#calendar-container .arrow:hover svg { + color: var(--text-muted); + opacity: 1; +} +#calendar-container tr th { + padding: 2px 0 4px; + font-weight: 500; + letter-spacing: 0.1em; + font-size: var(--font-adaptive-smallest); +} +#calendar-container tr th:first-child { + padding-left: 0 !important; +} +#calendar-container tr td { + padding: 2px 0 0; + border-radius: var(--radius-m); + cursor: var(--cursor); + border: 1px solid transparent; + transition: none; +} +#calendar-container tr td:first-child { + padding-left: 0 !important; +} +#calendar-container .nav { + padding: 0; + margin: var(--size-4-2) var(--size-4-1); +} +#calendar-container .dot { + margin: 0; +} +#calendar-container .year, +#calendar-container .month, +#calendar-container .title { + font-size: calc(var(--font-adaptive-small) + 2px); + font-weight: 400; + color: var(--text-normal); +} +#calendar-container .today.active, +#calendar-container .today { + color: var(--text-accent); + font-weight: 600; +} +#calendar-container .today.active .dot, +#calendar-container .today .dot { + fill: var(--calendar-dot-today); +} +#calendar-container .active .task { + stroke: var(--text-faint); +} +#calendar-container .active { + color: var(--text-normal); +} +#calendar-container .reset-button { + text-transform: none; + letter-spacing: 0; + font-size: var(--font-adaptive-smaller); + font-weight: 500; + color: var(--text-muted); + border-radius: 4px; + margin: 0; + padding: 2px 8px; +} +#calendar-container .reset-button:hover { + color: var(--text-normal); + background-color: var(--background-modifier-hover); +} +#calendar-container .reset-button, +#calendar-container .week-num, +#calendar-container .day { + cursor: var(--cursor); +} +#calendar-container .day.adjacent-month { + color: var(--text-faint); + opacity: 1; +} +#calendar-container .day { + padding: 2px 4px 4px; + transition: none; +} +#calendar-container .day, +#calendar-container .week-num { + font-size: calc(var(--font-adaptive-smaller) + 5%); +} +#calendar-container .active, +#calendar-container .active.today, +#calendar-container .week-num:hover, +#calendar-container .day:hover { + background-color: var(--color-background-day-active); + color: var(--calendar-text-active); + transition: none; +} +#calendar-container .active .dot { + fill: var(--calendar-dot-active); +} + +/* Charts */ +.block-language-chart canvas, +.block-language-dataviewjs canvas { + margin: 1em 0; +} + +.theme-light, +.theme-dark { + --chart-color-1:var(--color-blue); + --chart-color-2:var(--color-red); + --chart-color-3:var(--color-yellow); + --chart-color-4:var(--color-green); + --chart-color-5:var(--color-orange); + --chart-color-6:var(--color-purple); + --chart-color-7:var(--color-cyan); + --chart-color-8:var(--color-pink); +} + +/* cMenu plugin */ +body #cMenuModalBar { + box-shadow: 0px 2px 20px var(--shadow-color); +} + +body #cMenuModalBar .cMenuCommandItem { + cursor: var(--cursor); +} + +body #cMenuModalBar button.cMenuCommandItem:hover { + background-color: var(--background-modifier-hover); +} + +.MiniSettings-statusbar-button { + padding-top: 0; + padding-bottom: 0; +} + +.MySnippets-statusbar-menu .menu-item .MS-OpenSnippet { + height: auto; + border: none; + background: transparent; + box-shadow: none; + width: auto; + padding: 4px 6px; + margin-left: 0; +} +.MySnippets-statusbar-menu .menu-item .MS-OpenSnippet svg path { + fill: var(--text-muted); +} +.MySnippets-statusbar-menu .menu-item .MS-OpenSnippet:hover { + background-color: var(--background-modifier-hover); +} + +/* Dataview plugin */ +/* inline lists */ +.dataview-inline-lists .markdown-source-view .dataview-ul, +.dataview-inline-lists .markdown-preview-view .dataview-ul { + --list-spacing: 0; +} +.dataview-inline-lists .markdown-source-view .dataview-ul li:not(:last-child):after, +.dataview-inline-lists .markdown-source-view .dataview-ol li:not(:last-child):after, +.dataview-inline-lists .markdown-preview-view .dataview-ul li:not(:last-child):after, +.dataview-inline-lists .markdown-preview-view .dataview-ol li:not(:last-child):after { + content: ", "; +} +.dataview-inline-lists .markdown-source-view ul.dataview-ul > li::before, +.dataview-inline-lists .markdown-source-view ul.dataview-ol > li::before, +.dataview-inline-lists .markdown-preview-view ul.dataview-ul > li::before, +.dataview-inline-lists .markdown-preview-view ul.dataview-ol > li::before { + display: none; +} +.dataview-inline-lists .markdown-source-view .dataview-ul li, +.dataview-inline-lists .markdown-source-view .dataview-ol li, +.dataview-inline-lists .markdown-preview-view .dataview-ul li, +.dataview-inline-lists .markdown-preview-view .dataview-ol li { + display: inline-block; + padding-inline-end: 0.25em; + margin-inline-start: 0; +} + +.markdown-rendered table.dataview { + margin-block-start: 0; + margin-block-end: 0; +} +.markdown-rendered table.dataview .dataview-result-list-li { + margin-inline-start: 0; +} + +body .table-view-table > thead > tr > th, +.markdown-preview-view .table-view-table > thead > tr > th { + font-weight: 400; + font-size: var(--table-text-size); + color: var(--text-muted); + border-bottom: var(--table-border-width) solid var(--table-border-color); + cursor: var(--cursor); +} + +table.dataview ul.dataview-ul { + list-style: none; + padding-inline-start: 0; + margin-block-start: 0em !important; + margin-block-end: 0em !important; +} + +.markdown-source-view.mod-cm6:not(.cards) .table-view-table > tbody > tr > td, +.markdown-preview-view:not(.cards) .table-view-table > tbody > tr > td { + max-width: var(--max-col-width); +} + +body .dataview.small-text { + color: var(--text-faint); +} + +/* Remove hover effect */ +body:not(.row-hover) .dataview.task-list-item:hover, +body:not(.row-hover) .dataview.task-list-basic-item:hover, +body:not(.row-hover) .table-view-table > tbody > tr:hover { + background-color: transparent !important; + box-shadow: none; +} + +body.row-hover .dataview.task-list-item:hover, +body.row-hover .dataview.task-list-basic-item:hover, +body.row-hover .table-view-table > tbody > tr:hover { + background-color: var(--table-row-background-hover); +} + +body .dataview-error { + background-color: transparent; +} + +.markdown-source-view.mod-cm6 .cm-content .dataview.dataview-error, +.dataview.dataview-error { + color: var(--text-muted); +} + +body div.dataview-error-box { + min-height: 0; + border: none; + background-color: transparent; + font-size: var(--table-text-size); + border-radius: var(--radius-m); + padding: 15px 0; + justify-content: flex-start; +} +body div.dataview-error-box p { + margin-block-start: 0; + margin-block-end: 0; + color: var(--text-faint); +} + +/* Trim columns feature */ +.trim-cols .markdown-source-view.mod-cm6 .table-view-table > tbody > tr > td, +.trim-cols .markdown-preview-view .table-view-table > tbody > tr > td, +.trim-cols .markdown-source-view.mod-cm6 .table-view-table > thead > tr > th { + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; +} + +/* Lists */ +ul .dataview .task-list-item:hover, +ul .dataview .task-list-basic-item:hover { + background-color: transparent; + box-shadow: none; +} + +body .dataview.result-group { + padding-left: 0; +} + +/* Inline fields */ +body .dataview.inline-field-key, +body .dataview.inline-field-value, +body .dataview .inline-field-standalone-value { + font-family: var(--font-text); + font-size: calc(var(--font-adaptive-normal) - 2px); + background: transparent; + color: var(--text-muted); +} + +body .dataview.inline-field-key { + padding: 0; +} + +body .dataview .inline-field-standalone-value { + padding: 0; +} + +body .dataview.inline-field-key::after { + margin-left: 3px; + content: "|"; + color: var(--background-modifier-border); +} + +body .dataview.inline-field-value { + padding: 0 1px 0 3px; +} + +/* Calendar */ +.markdown-preview-view .block-language-dataview table.calendar th { + border: none; + cursor: default; + background-image: none; +} + +.markdown-preview-view .block-language-dataview table.calendar .day { + font-size: var(--font-adaptive-small); +} + +/* Git plugin */ +.git-view-body .opener { + text-transform: uppercase; + letter-spacing: 0.05em; + font-size: var(--font-adaptive-smallest); + font-weight: 500; + padding: 5px 7px 5px 10px; + margin-bottom: 6px; +} + +.git-view-body .file-view .opener { + text-transform: none; + letter-spacing: normal; + font-size: var(--font-adaptive-smallest); + font-weight: normal; + padding: initial; + margin-bottom: 0px; +} + +.git-view-body .file-view .opener .collapse-icon { + display: flex !important; + margin-left: -7px; +} + +.git-view-body { + margin-top: 6px; +} + +.git-view-body .file-view { + margin-left: 4px; +} + +.git-view-body .file-view main:hover { + color: var(--text-normal); +} + +.git-view-body .file-view .tools .type { + display: none !important; +} + +.git-view-body .file-view .tools { + opacity: 0; + transition: opacity 0.1s; +} + +.git-view-body .file-view main:hover > .tools { + opacity: 1; +} + +.git-view-body .staged { + margin-bottom: 12px; +} + +.git-view-body .opener.open { + color: var(--text-normal); +} + +div[data-type=git-view] .search-input-container { + margin-left: 0; + width: 100%; +} + +.git-view-body .opener .collapse-icon { + display: none !important; +} + +.git-view-body main { + background-color: var(--background-primary) !important; + width: initial !important; +} + +.git-view-body .file-view > main:not(.topLevel) { + margin-left: 7px; +} + +div[data-type=git-view] .commit-msg { + min-height: 2.5em !important; + height: 2.5em !important; + padding: 6.5px 8px !important; +} + +div[data-type=git-view] .search-input-clear-button { + bottom: 5.5px; +} + +/* Hider plugin */ +.hider-vault .nav-folder.mod-root > .nav-folder-title { + height: 4px; +} + +/* Kanban plugin */ +body.theme-dark, +body.minimal-dark-black.theme-dark, +body.minimal-dark-tonal.theme-dark, +body.minimal-light-white.theme-light, +body.minimal-light-tonal.theme-light { + --kanban-border:0px; +} + +body:not(.is-mobile) .kanban-plugin__grow-wrap > textarea:focus { + box-shadow: none; +} + +body:not(.minimal-icons-off) .kanban-plugin svg.cross { + height: 14px; + width: 14px; +} + +body .kanban-plugin__icon > svg, +body .kanban-plugin__lane-settings-button svg { + width: 18px; + height: 18px; +} +body .kanban-plugin { + --kanban-border:var(--border-width); + --interactive-accent:var(--text-selection); + --interactive-accent-hover:var(--background-modifier-hover); + --text-on-accent:var(--text-normal); + background-color: var(--background-primary); +} +body .kanban-plugin__markdown-preview-view { + font-family: var(--font-text); +} +body .kanban-plugin__board > div { + margin: 0 auto; +} +body .kanban-plugin__checkbox-label { + color: var(--text-muted); +} +body .kanban-plugin__item-markdown ul { + margin: 0; +} +body .kanban-plugin__item-content-wrapper { + box-shadow: none; +} +body .kanban-plugin__grow-wrap > textarea, +body .kanban-plugin__grow-wrap::after { + padding: 0; + border: 0; + border-radius: 0; +} +body .kanban-plugin__markdown-preview-view, +body .kanban-plugin__grow-wrap > textarea, +body .kanban-plugin__grow-wrap::after, +body .kanban-plugin__item-title p { + font-size: var(--font-ui-medium); + line-height: 1.3; +} +body .kanban-plugin__item { + background-color: var(--background-primary); +} +body .kanban-plugin__item-title-wrapper { + align-items: center; +} +body .kanban-plugin__lane-form-wrapper { + border: 1px solid var(--background-modifier-border); +} +body .kanban-plugin__lane-header-wrapper { + border-bottom: 0; +} +body .kanban-plugin__lane-title p, +body .kanban-plugin__lane-header-wrapper .kanban-plugin__grow-wrap > textarea, +body .kanban-plugin__lane-input-wrapper .kanban-plugin__grow-wrap > textarea { + background: transparent; + color: var(--text-normal); + font-size: var(--font-ui-medium); + font-weight: 500; +} +body .kanban-plugin__item-input-wrapper .kanban-plugin__grow-wrap > textarea { + padding: 0; + border-radius: 0; + height: auto; +} +body .kanban-plugin__item-form .kanban-plugin__grow-wrap { + background-color: var(--background-primary); +} +body .kanban-plugin__item-input-wrapper .kanban-plugin__grow-wrap > textarea::placeholder { + color: var(--text-faint); +} +body .kanban-plugin__lane button.kanban-plugin__lane-settings-button.is-enabled, +body .kanban-plugin__lane button.kanban-plugin__lane-settings-button, +body .kanban-plugin__item .kanban-plugin__item-edit-archive-button, +body .kanban-plugin__item button.kanban-plugin__item-edit-button, +body .kanban-plugin__item-settings-actions > button, +body .kanban-plugin__lane-action-wrapper > button { + background: transparent; + transition: color 0.1s ease-in-out; +} +body .kanban-plugin__item .kanban-plugin__item-edit-archive-button:hover, +body .kanban-plugin__item button.kanban-plugin__item-edit-button.is-enabled, +body .kanban-plugin__item button.kanban-plugin__item-edit-button:hover, +body .kanban-plugin__lane button.kanban-plugin__lane-settings-button.is-enabled, +body .kanban-plugin__lane button.kanban-plugin__lane-settings-button:hover { + color: var(--text-normal); + transition: color 0.1s ease-in-out; + background: transparent; +} +body .kanban-plugin__new-lane-button-wrapper { + position: fixed; + bottom: 30px; +} +body .kanban-plugin__lane-items > .kanban-plugin__placeholder:only-child { + border: 1px dashed var(--background-modifier-border); + height: 2em; +} +body .kanban-plugin__item-postfix-button-wrapper { + align-self: flex-start; +} +body .kanban-plugin__item button.kanban-plugin__item-prefix-button.is-enabled, +body .kanban-plugin__item button.kanban-plugin__item-postfix-button.is-enabled, +body .kanban-plugin__lane button.kanban-plugin__lane-settings-button.is-enabled { + color: var(--text-muted); +} +body .kanban-plugin button { + box-shadow: none; + cursor: var(--cursor); + height: auto; +} +body .kanban-plugin__item button.kanban-plugin__item-prefix-button:hover, +body .kanban-plugin__item button.kanban-plugin__item-postfix-button:hover, +body .kanban-plugin__lane button.kanban-plugin__lane-settings-button:hover { + background-color: var(--background-modifier-hover); +} +body .kanban-plugin__item-button-wrapper > button { + color: var(--text-muted); + font-weight: 400; + background: transparent; + min-height: calc(var(--input-height) + 8px); +} +body .kanban-plugin__item-button-wrapper > button:hover { + color: var(--text-normal); + background: var(--background-modifier-hover); +} +body .kanban-plugin__item-button-wrapper > button:focus { + box-shadow: none; +} +body .kanban-plugin__item-button-wrapper { + padding: 1px 6px 5px; + border-top: none; +} +body .kanban-plugin__lane-setting-wrapper > div:last-child { + border: none; + margin: 0; +} +body .kanban-plugin.something-is-dragging { + cursor: grabbing; +} +body .kanban-plugin__item.is-dragging { + box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15), 0 0 0 2px var(--text-selection); +} +body .kanban-plugin__lane-items { + border: var(--kanban-border) solid var(--background-modifier-border); + padding: 0 4px; + margin: 0; + background-color: var(--background-secondary); +} +body .kanban-plugin__lane { + background: transparent; + padding: 0; + border: var(--border-width) solid transparent; +} +body .kanban-plugin__lane.is-dragging { + box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15); + border: 1px solid var(--background-modifier-border); +} +body .kanban-plugin__lane .kanban-plugin__item-button-wrapper { + border-top-left-radius: 8px; + border-top-right-radius: 8px; + border-top: 1px solid var(--background-modifier-border); + border-bottom-width: 0; + padding: 4px 4px 0; +} +body .kanban-plugin__lane.will-prepend .kanban-plugin__lane-items { + border-radius: 8px; +} +body .kanban-plugin__lane.will-prepend .kanban-plugin__item-form { + border-top: 1px solid var(--background-modifier-border); + border-radius: 8px 8px 0 0; + padding: 4px 4px 0; + border-bottom-width: 0; +} +body .kanban-plugin__lane.will-prepend .kanban-plugin__item-form + .kanban-plugin__lane-items { + border-top-width: 0px; + border-radius: 0 0 8px 8px; +} +body .kanban-plugin__lane.will-prepend .kanban-plugin__item-button-wrapper + .kanban-plugin__lane-items { + border-top-width: 0px; + border-radius: 0 0 8px 8px; +} +body .kanban-plugin__lane:not(.will-prepend) .kanban-plugin__item-form, +body .kanban-plugin__lane:not(.will-prepend) .kanban-plugin__item-button-wrapper { + border-top: none; + border-radius: 0 0 8px 8px; +} +body .kanban-plugin__lane:not(.will-prepend) .kanban-plugin__item-button-wrapper { + padding: 0 4px 4px; + border-bottom-width: 1px; +} +body .kanban-plugin__lane:not(.will-prepend) .kanban-plugin__lane-items { + border-bottom: none; + border-top-width: 1px; + border-radius: 8px 8px 0 0; +} +body .kanban-plugin__item-form .kanban-plugin__item-input-wrapper { + min-height: calc(var(--input-height) + 8px); + display: flex; + justify-content: center; +} +body .kanban-plugin__item-form, +body .kanban-plugin__item-button-wrapper { + background-color: var(--background-secondary); + border: var(--kanban-border) solid var(--background-modifier-border); +} +body .kanban-plugin__item-form { + padding: 0 4px 5px; +} +body .kanban-plugin__markdown-preview-view ol.contains-task-list .contains-task-list, +body .kanban-plugin__markdown-preview-view ul.contains-task-list .contains-task-list, +body .kanban-plugin__markdown-preview-view ul, body .kanban-plugin__markdown-preview-view ol { + padding-inline-start: 1.8em !important; +} + +@media (max-width: 400pt) { + .kanban-plugin__board { + flex-direction: column !important; + } + .kanban-plugin__lane { + width: 100% !important; + margin-bottom: 1rem !important; + } +} +/* Lapel */ +body .cm-heading-marker { + cursor: var(--cursor); + padding-left: 10px; +} + +/* Sortable plugin */ +body .markdown-preview-view th, +body .table-view-table > thead > tr > th, +body .markdown-source-view.mod-cm6 .dataview.table-view-table thead.table-view-thead tr th { + cursor: var(--cursor); + background-image: none; +} + +/* Live preview */ +.markdown-source-view.mod-cm6 th { + background-repeat: no-repeat; + background-position: right; +} + +/* Style Settings preferences */ +.style-settings-container[data-level="2"] { + background: var(--background-secondary); + border: 1px solid var(--ui1); + border-radius: 5px; + padding: 10px 20px; + margin: 2px 0 2px -20px; +} + +.workspace-leaf-content[data-type=style-settings] div[data-id=instructions] .setting-item-name { + display: none; +} +.workspace-leaf-content[data-type=style-settings] div[data-id=instructions] .setting-item-description { + color: var(--text-normal); + font-size: var(--font-adaptive-smaller); + padding-bottom: 0.5em; +} +.workspace-leaf-content[data-type=style-settings] .view-content { + padding: var(--size-4-4) 0; +} +.workspace-leaf-content[data-type=style-settings] .view-content > div { + width: var(--line-width); + max-width: var(--max-width); + margin: 0 auto; +} +.workspace-leaf-content[data-type=style-settings] .style-settings-heading[data-level="0"] .setting-item-name { + padding-left: 17px; +} +.workspace-leaf-content[data-type=style-settings] .setting-item { + max-width: 100%; + margin: 0 auto; + border: none; +} +.workspace-leaf-content[data-type=style-settings] .setting-item-name { + position: relative; +} +.workspace-leaf-content[data-type=style-settings] .style-settings-collapse-indicator { + position: absolute; + left: 0; +} + +.setting-item-heading.style-settings-heading, +.style-settings-container .style-settings-heading { + cursor: var(--cursor); +} + +.modal.mod-settings .setting-item .pickr button.pcr-button { + box-shadow: none; + border-radius: 40px; + height: 24px; + width: 24px; +} + +.style-settings-container .setting-item { + background-color: transparent; +} + +.setting-item .pickr .pcr-button:after, +.setting-item .pickr .pcr-button:before { + border-radius: 40px; + box-shadow: none; + border: none; +} +.setting-item.setting-item-heading.style-settings-heading.is-collapsed { + border-bottom: 1px solid var(--background-modifier-border); +} +.setting-item.setting-item-heading.style-settings-heading { + border: 0; + padding: 10px 0 5px; + margin-bottom: 0; + border-radius: 0; +} +.setting-item .style-settings-import, +.setting-item .style-settings-export { + text-decoration: none; + font-size: var(--font-ui-small); + font-weight: 500; + color: var(--text-muted); + margin: 0; + padding: 2px 8px; + border-radius: 5px; + cursor: var(--cursor); +} +.setting-item .style-settings-import:hover, +.setting-item .style-settings-export:hover { + background-color: var(--background-modifier-hover); + color: var(--text-normal); + cursor: var(--cursor); +} + +.mod-root .workspace-leaf-content[data-type=style-settings] .style-settings-container .setting-item:not(.setting-item-heading) { + flex-direction: row; + align-items: center; + padding: 0.5em 0; +} + +.workspace-split:not(.mod-root) .workspace-leaf-content[data-type=style-settings] .setting-item-name { + font-size: var(--font-adaptive-smaller); +} + +.themed-color-wrapper > div + div { + margin-top: 0; + margin-left: 6px; +} + +.theme-light .themed-color-wrapper > .theme-light { + background-color: transparent; +} +.theme-light .themed-color-wrapper > .theme-dark { + background-color: rgba(0, 0, 0, 0.8); +} + +.theme-dark .themed-color-wrapper > .theme-dark { + background-color: transparent; +} + +@media (max-width: 400pt) { + .workspace-leaf-content[data-type=style-settings] .setting-item-name { + font-size: var(--font-adaptive-small); + } + .workspace-leaf-content[data-type=style-settings] .view-content > .setting-item > .setting-item-info:first-child { + width: 100%; + margin-right: 0; + } +} +.zoom-plugin-header { + --link-color: var(--text-normal); + --link-decoration: none; + font-size: var(--font-ui-small); + padding: 0; + justify-content: center; + margin: var(--size-4-2) auto; + max-width: var(--max-width); +} +.zoom-plugin-header > .zoom-plugin-title { + text-decoration: none; + max-width: 15em; + overflow: hidden; +} +.zoom-plugin-header > .zoom-plugin-delimiter { + color: var(--text-faint); + padding: 0 var(--size-4-1); +} + +/* Color schemes */ +/* Atom */ +.theme-dark.minimal-atom-dark { + --color-red-rgb: 225,109,118; + --color-orange-rgb: 209,154,102; + --color-yellow-rgb: 206,193,103; + --color-green-rgb: 152,195,121; + --color-cyan-rgb: 88,182,194; + --color-blue-rgb: 98,175,239; + --color-purple-rgb: 198,120,222; + --color-pink-rgb: 225,109,118; + --color-red:#e16d76; + --color-orange:#d19a66; + --color-yellow:#cec167; + --color-green:#98c379; + --color-cyan:#58b6c2; + --color-blue:#62afef; + --color-purple:#c678de; + --color-pink:#e16d76; +} + +.theme-light.minimal-atom-light { + --color-red-rgb: 228,87,73; + --color-orange-rgb: 183,107,2; + --color-yellow-rgb: 193,131,2; + --color-green-rgb: 80,161,80; + --color-cyan-rgb: 13,151,179; + --color-blue-rgb: 98,175,239; + --color-purple-rgb: 166,38,164; + --color-pink-rgb: 228,87,73; + --color-red:#e45749; + --color-orange:#b76b02; + --color-yellow:#c18302; + --color-green:#50a150; + --color-cyan:#0d97b3; + --color-blue:#62afef; + --color-purple:#a626a4; + --color-pink:#e45749; + --base-h:106; + --base-s:0%; + --base-l:98%; + --accent-h:231; + --accent-s:76%; + --accent-l:62%; + --bg1:#fafafa; + --bg2:#eaeaeb; + --bg3:rgba(0,0,0,.1); + --ui1:#dbdbdc; + --ui2:#d8d8d9; + --tx1:#232324; + --tx2:#8e8e90; + --tx3:#a0a1a8; + --hl1:rgba(180,180,183,0.3); + --hl2:rgba(209,154,102,0.35); +} + +.theme-light.minimal-atom-light.minimal-light-white { + --bg3:#eaeaeb; +} + +.theme-light.minimal-atom-light.minimal-light-contrast .titlebar, +.theme-light.minimal-atom-light.minimal-light-contrast.minimal-status-off .status-bar, +.theme-light.minimal-atom-light.minimal-light-contrast .workspace-drawer.mod-left, +.theme-light.minimal-atom-light.minimal-light-contrast .mod-left-split, +.theme-light.minimal-atom-light.minimal-light-contrast .workspace-ribbon.mod-left:not(.is-collapsed), +.theme-light.minimal-atom-light.minimal-light-contrast .theme-dark, +.theme-dark.minimal-atom-dark { + --base-h:220; + --base-s:12%; + --base-l:18%; + --accent-h:220; + --accent-s:86%; + --accent-l:65%; + --bg1:#282c34; + --bg2:#21252c; + --bg3:#3a3f4b; + --divider-color:#181a1f; + --tab-outline-color:#181a1f; + --tx1:#d8dae1; + --tx2:#898f9d; + --tx3:#5d6370; + --hl1:rgba(114,123,141,0.3); + --hl2:rgba(209,154,102,0.3); + --sp1:#ffffff; +} + +.theme-dark.minimal-atom-dark.minimal-dark-black { + --base-d:5%; + --bg3:#282c34; + --divider-color:#282c34; + --tab-outline-color:#282c34; +} + +/* +ayu +MIT License +Copyright (c) Konstantin Pschera (kons.ch) +https://github.com/ayu-theme/ayu-colors +*/ +.theme-light.minimal-ayu-light { + --color-red-rgb: 230,80,80; + --color-orange-rgb: 250,141,62; + --color-yellow-rgb: 242,174,73; + --color-green-rgb: 108,191,67; + --color-cyan-rgb: 76,191,153; + --color-blue-rgb: 57,158,230; + --color-purple-rgb: 163,122,204; + --color-pink-rgb: 255,115,131; + --color-red:#e65050; + --color-orange:#fa8d3e; + --color-yellow:#f2ae49; + --color-green:#6CBF43; + --color-cyan:#4cbf99; + --color-blue:#399ee6; + --color-purple:#a37acc; + --color-pink:#ff7383; + --base-h:210; + --base-s:17%; + --base-l:98%; + --accent-h:36; + --accent-s:100%; + --accent-l:50%; + --bg1:#ffffff; + --bg2:#f8f9fa; + --bg3:rgba(209,218,224,0.5); + --ui1:#E6EAED; + --tx1:#5C6165; + --tx2:#8A9199; + --tx3:#AAAEB0; + --hl1:rgba(3,91,214,0.15); +} + +.theme-dark.minimal-ayu-dark { + --color-red-rgb: 255,102,102; + --color-orange-rgb: 250,173,102; + --color-yellow-rgb: 255,209,55; + --color-green-rgb: 135,217,108; + --color-cyan-rgb: 149,230,203; + --color-blue-rgb: 115,208,255; + --color-purple-rgb: 223,191,255; + --color-pink-rgb: 242,121,131; + --color-red:#ff6666; + --color-orange:#ffad66; + --color-yellow:#ffd137; + --color-green:#87D96C; + --color-cyan:#95e6cb; + --color-blue:#73d0ff; + --color-purple:#dfbfff; + --color-pink:#f27983; +} + +.theme-light.minimal-ayu-light.minimal-light-contrast .titlebar, +.theme-light.minimal-ayu-light.minimal-light-contrast.minimal-status-off .status-bar, +.theme-light.minimal-ayu-light.minimal-light-contrast .workspace-drawer.mod-left, +.theme-light.minimal-ayu-light.minimal-light-contrast .mod-left-split, +.theme-light.minimal-ayu-light.minimal-light-contrast .workspace-ribbon.mod-left:not(.is-collapsed), +.theme-light.minimal-ayu-light.minimal-light-contrast .theme-dark, +.theme-dark.minimal-ayu-dark { + --base-h:222; + --base-s:22%; + --base-l:15%; + --accent-h:35; + --accent-s:100%; + --accent-l:60%; + --bg1:#232937; + --bg2:#1E2431; + --bg3:rgba(51,61,80,0.5); + --ui1:#333C4A; + --ui2:#333C4A; + --ui3:#333C4A; + --tx1:#cccac2; + --tx2:#707A8C; + --tx3:#495063; + --hl1:rgba(64,159,255,0.25); +} + +.theme-dark.minimal-ayu-dark.minimal-dark-black { + --accent-h:40; + --accent-s:75%; + --accent-l:61%; + --bg3:#0E1017; + --tx1:#BFBDB6; + --divider-color:#11151C; + --tab-outline-color:#11151C; +} + +/* +Catppuccin +MIT License +Copyright (c) 2021 Catppuccin +https://github.com/catppuccin/catppuccin +*/ +.theme-light.minimal-catppuccin-light { + --color-red-rgb: 230,69,83; + --color-orange-rgb: 254,100,12; + --color-yellow-rgb: 223,142,29; + --color-green-rgb: 64,160,43; + --color-cyan-rgb: 23,146,154; + --color-blue-rgb: 33,102,246; + --color-purple-rgb: 137,56,239; + --color-pink-rgb: 234,119,203; + --color-red: #E64553; + --color-orange: #FE640C; + --color-yellow: #DF8E1D; + --color-green: #40A02B; + --color-cyan: #17929A; + --color-blue: #2166F6; + --color-purple: #8938EF; + --color-pink: #EA77CB; + --base-h: 228; + --base-s: 20%; + --base-l: 95%; + --accent-h: 11; + --accent-s: 59%; + --accent-l: 67%; + --bg1: #F0F1F5; + --bg2: #DCE0E8; + --bg3: hsla(228,11%,65%,.25); + --ui1: #CCD0DA; + --ui2: #BCC0CC; + --ui3: #ACB0BE; + --tx1: #4D4F69; + --tx2: #5D5F77; + --tx3: #8D8FA2; + --hl1: rgba(172,176,190,.3); + --hl2: rgba(223,142,29,.3); +} + +.theme-dark.minimal-catppuccin-dark { + --color-red-rgb: 235,153,156; + --color-orange-rgb: 239,160,118; + --color-yellow-rgb: 229,200,144; + --color-green-rgb: 166,209,138; + --color-cyan-rgb: 129,200,190; + --color-blue-rgb: 140,170,238; + --color-purple-rgb: 202,158,230; + --color-pink-rgb: 244,185,229; + --color-red: #EB999C; + --color-orange: #EFA076; + --color-yellow: #E5C890; + --color-green: #A6D18A; + --color-cyan: #81C8BE; + --color-blue: #8CAAEE; + --color-purple: #CA9EE6; + --color-pink: #F4B9E5; +} + +.theme-light.minimal-catppuccin-light.minimal-light-tonal { + --bg2: #DCE0E8; +} + +.theme-light.minimal-catppuccin-light.minimal-light-white { + --bg3: #F0F1F5; + --ui1: #DCE0E8; +} + +.theme-light.minimal-catppuccin-light.minimal-light-contrast .titlebar, +.theme-light.minimal-catppuccin-light.minimal-light-contrast.minimal-status-off .status-bar, +.theme-light.minimal-catppuccin-light.minimal-light-contrast .workspace-drawer.mod-left, +.theme-light.minimal-catppuccin-light.minimal-light-contrast .mod-left-split, +.theme-light.minimal-catppuccin-light.minimal-light-contrast .workspace-ribbon.mod-left:not(.is-collapsed), +.theme-light.minimal-catppuccin-light.minimal-light-contrast .theme-dark, +.theme-dark.minimal-catppuccin-dark { + --base-h: 229; + --base-s: 19%; + --base-l: 23%; + --accent-h: 10; + --accent-s: 57%; + --accent-l: 88%; + --bg1: #303446; + --bg2: #242634; + --bg3: hsla(229,13%,52%,0.25); + --ui1: #41455A; + --ui2: #51576D; + --ui3: #626880; + --tx1: #C6D0F5; + --tx2: #A6ADCE; + --tx3: #848BA7; + --sp1: #242634; + --hl1: rgba(98,104,128,.5); + --hl2: rgba(223,142,29,.4); +} + +.theme-dark.minimal-catppuccin-dark.minimal-dark-black { + --ui1: #303446; + --hl2: rgba(223,142,29,.5); +} + +/* +Dracula +MIT License +Copyright (c) 2016 Dracula Theme +https://github.com/dracula/dracula-theme +*/ +.theme-dark.minimal-dracula-dark { + --color-red-rgb: 255,85,85; + --color-orange-rgb: 255,184,108; + --color-yellow-rgb: 241,250,140; + --color-green-rgb: 80,250,123; + --color-cyan-rgb: 139,233,253; + --color-blue-rgb: 98,114,164; + --color-purple-rgb: 189,147,249; + --color-pink-rgb: 255,121,198; + --color-red:#ff5555; + --color-orange:#ffb86c; + --color-yellow:#f1fa8c; + --color-green:#50fa7b; + --color-cyan:#8be9fd; + --color-blue:#6272a4; + --color-purple:#bd93f9; + --color-pink:#ff79c6; +} + +.theme-light.minimal-dracula-light.minimal-light-contrast .titlebar, +.theme-light.minimal-dracula-light.minimal-light-contrast.minimal-status-off .status-bar, +.theme-light.minimal-dracula-light.minimal-light-contrast .workspace-drawer.mod-left, +.theme-light.minimal-dracula-light.minimal-light-contrast .mod-left-split, +.theme-light.minimal-dracula-light.minimal-light-contrast .workspace-ribbon.mod-left:not(.is-collapsed), +.theme-light.minimal-dracula-light.minimal-light-contrast .theme-dark, +.theme-dark.minimal-dracula-dark { + --base-h: 232; + --base-s: 16%; + --base-l: 19%; + --accent-h: 265; + --accent-s: 89%; + --accent-l: 78%; + --bg1: #282a37; + --bg2: #21222c; + --ui2: #44475a; + --ui3: #6272a4; + --tx1: #f8f8f2; + --tx2: #949FBE; + --tx3: #6272a4; + --hl1:rgba(134, 140, 170, 0.3); + --hl2:rgba(189, 147, 249, 0.35); +} + +.theme-dark.minimal-dracula-dark.minimal-dark-black { + --ui1:#282a36; +} + +/* Eink */ +.theme-light.minimal-eink-light, +.theme-dark.minimal-eink-dark { + --collapse-icon-color: var(--text-normal); + --icon-color-active: var(--bg1); + --icon-color-hover: var(--bg1); + --icon-color-focused: var(--bg1); + --icon-opacity: 1; + --indentation-guide-color: var(--tx1); + --indentation-guide-color-active: var(--tx1); + --indentation-guide-width-active: 3px; + --interactive-normal: var(--bg1); + --input-shadow: 0 0 0 1px var(--tx1); + --link-unresolved-opacity: 1; + --link-unresolved-decoration-style: dashed; + --link-unresolved-decoration-color: var(--tx1); + --metadata-label-background-active: var(--bg1); + --metadata-input-background-active: var(--bg1); + --modal-border-color: var(--tx1); + --modal-border-width: 2px; + --prompt-border-color: var(--tx1); + --prompt-border-width: 2px; + --calendar-dot-active: var(--bg1); + --calendar-dot-today: var(--bg1); + --calendar-text-active: var(--bg1); + --tag-border-width: 1.25px; + --tag-background: transparent; + --tag-background-hover: transparent; + --tag-border-color: var(--tx1); + --tag-border-color-hover: var(--tx1); + --text-on-accent: var(--bg1); + --text-on-accent-inverted: var(--bg1); + --text-selection: var(--tx1); + --vault-profile-color: var(--tx1); + --nav-item-color-hover: var(--bg1); +} +.theme-light.minimal-eink-light button:hover, +.theme-light.minimal-eink-light ::selection, +.theme-dark.minimal-eink-dark button:hover, +.theme-dark.minimal-eink-dark ::selection { + color: var(--bg1); +} +.theme-light.minimal-eink-light .nav-files-container, +.theme-dark.minimal-eink-dark .nav-files-container { + --nav-item-color-active: var(--bg1); +} +.theme-light.minimal-eink-light .tree-item-self:hover, +.theme-dark.minimal-eink-dark .tree-item-self:hover { + --nav-collapse-icon-color: var(--bg1); +} +.theme-light.minimal-eink-light.is-focused .mod-active .workspace-tab-header.is-active .workspace-tab-header-inner-icon, .theme-light.minimal-eink-light.labeled-nav .mod-left-split .mod-top .workspace-tab-header.is-active, .theme-light.minimal-eink-light.tabs-modern, +.theme-dark.minimal-eink-dark.is-focused .mod-active .workspace-tab-header.is-active .workspace-tab-header-inner-icon, +.theme-dark.minimal-eink-dark.labeled-nav .mod-left-split .mod-top .workspace-tab-header.is-active, +.theme-dark.minimal-eink-dark.tabs-modern { + --minimal-tab-text-color-active: var(--bg1); + --tab-text-color-focused: var(--bg1); + --tab-text-color-focused-active-current: var(--bg1); +} +.theme-light.minimal-eink-light .setting-hotkey, +.theme-dark.minimal-eink-dark .setting-hotkey { + background-color: transparent; + border: 1px solid var(--tx1); +} +.theme-light.minimal-eink-light .suggestion-container, +.theme-dark.minimal-eink-dark .suggestion-container { + border-width: 3px; +} +.theme-light.minimal-eink-light .markdown-rendered code, +.theme-light.minimal-eink-light .cm-s-obsidian span.cm-inline-code, +.theme-dark.minimal-eink-dark .markdown-rendered code, +.theme-dark.minimal-eink-dark .cm-s-obsidian span.cm-inline-code { + font-weight: 600; +} +.theme-light.minimal-eink-light .tree-item-self:hover, +.theme-light.minimal-eink-light .tree-item-self.is-active, +.theme-dark.minimal-eink-dark .tree-item-self:hover, +.theme-dark.minimal-eink-dark .tree-item-self.is-active { + --icon-color: var(--bg1); +} +.theme-light.minimal-eink-light .metadata-property-icon, +.theme-dark.minimal-eink-dark .metadata-property-icon { + --icon-color-focused: var(--tx1); +} +.theme-light.minimal-eink-light .checkbox-container, +.theme-dark.minimal-eink-dark .checkbox-container { + background-color: var(--bg1); + box-shadow: 0 0 0 1px var(--tx1); + --toggle-thumb-color: var(--tx1); +} +.theme-light.minimal-eink-light .checkbox-container.is-enabled, +.theme-dark.minimal-eink-dark .checkbox-container.is-enabled { + background-color: var(--tx1); + --toggle-thumb-color: var(--bg1); +} +.theme-light.minimal-eink-light.tabs-modern .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header.is-active, .theme-light.minimal-eink-light.labeled-nav .mod-left-split .mod-top .workspace-tab-header.is-active:not(:hover), +.theme-dark.minimal-eink-dark.tabs-modern .mod-root .workspace-tabs:not(.mod-stacked) .workspace-tab-header.is-active, +.theme-dark.minimal-eink-dark.labeled-nav .mod-left-split .mod-top .workspace-tab-header.is-active:not(:hover) { + background-color: var(--tx1); +} +.theme-light.minimal-eink-light.labeled-nav .mod-left-split .mod-top .workspace-tab-header.is-active, .theme-light.minimal-eink-light.labeled-nav .mod-left-split .mod-top .workspace-tab-header:hover, .theme-light.minimal-eink-light.is-focused.tabs-modern .mod-active .workspace-tab-header.is-active .workspace-tab-header-inner-title, +.theme-light.minimal-eink-light #calendar-container .reset-button:hover, +.theme-light.minimal-eink-light .status-bar .plugin-sync:hover .sync-status-icon.mod-success, +.theme-light.minimal-eink-light .status-bar .plugin-sync:hover .sync-status-icon.mod-working, +.theme-light.minimal-eink-light .status-bar-item.mod-clickable:hover, +.theme-light.minimal-eink-light .text-icon-button:hover, +.theme-light.minimal-eink-light .community-item .suggestion-highlight, +.theme-light.minimal-eink-light .cm-s-obsidian span.cm-formatting-highlight, +.theme-light.minimal-eink-light .cm-s-obsidian span.cm-highlight, +.theme-light.minimal-eink-light .markdown-rendered mark, +.theme-light.minimal-eink-light .suggestion-item.is-selected, +.theme-light.minimal-eink-light .horizontal-tab-nav-item:hover, +.theme-light.minimal-eink-light .search-result-file-matched-text, +.theme-light.minimal-eink-light .vertical-tab-nav-item:hover, +.theme-light.minimal-eink-light .mod-root .workspace-tab-header-status-icon, +.theme-light.minimal-eink-light .mod-root .workspace-tab-header:hover, .theme-light.minimal-eink-light:not(.colorful-active) .horizontal-tab-nav-item.is-active, .theme-light.minimal-eink-light:not(.colorful-active) .vertical-tab-nav-item.is-active, +.theme-light.minimal-eink-light button.mod-cta, +.theme-light.minimal-eink-light .search-result-file-match:hover, +.theme-light.minimal-eink-light select:hover, .theme-light.minimal-eink-light .dropdown:hover, +.theme-dark.minimal-eink-dark.labeled-nav .mod-left-split .mod-top .workspace-tab-header.is-active, +.theme-dark.minimal-eink-dark.labeled-nav .mod-left-split .mod-top .workspace-tab-header:hover, +.theme-dark.minimal-eink-dark.is-focused.tabs-modern .mod-active .workspace-tab-header.is-active .workspace-tab-header-inner-title, +.theme-dark.minimal-eink-dark #calendar-container .reset-button:hover, +.theme-dark.minimal-eink-dark .status-bar .plugin-sync:hover .sync-status-icon.mod-success, +.theme-dark.minimal-eink-dark .status-bar .plugin-sync:hover .sync-status-icon.mod-working, +.theme-dark.minimal-eink-dark .status-bar-item.mod-clickable:hover, +.theme-dark.minimal-eink-dark .text-icon-button:hover, +.theme-dark.minimal-eink-dark .community-item .suggestion-highlight, +.theme-dark.minimal-eink-dark .cm-s-obsidian span.cm-formatting-highlight, +.theme-dark.minimal-eink-dark .cm-s-obsidian span.cm-highlight, +.theme-dark.minimal-eink-dark .markdown-rendered mark, +.theme-dark.minimal-eink-dark .suggestion-item.is-selected, +.theme-dark.minimal-eink-dark .horizontal-tab-nav-item:hover, +.theme-dark.minimal-eink-dark .search-result-file-matched-text, +.theme-dark.minimal-eink-dark .vertical-tab-nav-item:hover, +.theme-dark.minimal-eink-dark .mod-root .workspace-tab-header-status-icon, +.theme-dark.minimal-eink-dark .mod-root .workspace-tab-header:hover, +.theme-dark.minimal-eink-dark:not(.colorful-active) .horizontal-tab-nav-item.is-active, +.theme-dark.minimal-eink-dark:not(.colorful-active) .vertical-tab-nav-item.is-active, +.theme-dark.minimal-eink-dark button.mod-cta, +.theme-dark.minimal-eink-dark .search-result-file-match:hover, +.theme-dark.minimal-eink-dark select:hover, +.theme-dark.minimal-eink-dark .dropdown:hover { + color: var(--bg1); +} +.theme-light.minimal-eink-light .is-flashing, +.theme-dark.minimal-eink-dark .is-flashing { + --text-highlight-bg: #999999 ; +} +.theme-light.minimal-eink-light #calendar-container .day:hover, +.theme-dark.minimal-eink-dark #calendar-container .day:hover { + --color-dot: var(--bg1); +} + +.theme-light.minimal-eink-light { + --base-h:0; + --base-s:0%; + --base-l:100%; + --accent-h:0; + --accent-s:0%; + --accent-l:0%; + --ax3:#000000; + --bg1:#ffffff; + --bg2:#ffffff; + --bg3:#000000; + --ui1:#000000; + --ui2:#000000; + --ui3:#000000; + --tx1:#000000; + --tx2:#000000; + --tx3:#000000; + --hl1:#000000; + --hl2:#000000; + --sp1:#ffffff; + --text-on-accent:#ffffff; + --background-modifier-cover: rgba(235,235,235,1); +} + +.theme-light.minimal-eink-light.minimal-light-contrast .titlebar, +.theme-light.minimal-eink-light.minimal-light-contrast.minimal-status-off .status-bar, +.theme-light.minimal-eink-light.minimal-light-contrast .workspace-drawer.mod-left, +.theme-light.minimal-eink-light.minimal-light-contrast .mod-left-split, +.theme-light.minimal-eink-light.minimal-light-contrast .workspace-ribbon.mod-left:not(.is-collapsed), +.theme-light.minimal-eink-light.minimal-light-contrast .theme-dark, +.theme-dark.minimal-eink-dark { + --base-h:0; + --base-s:0%; + --base-l:0%; + --accent-h:0; + --accent-s:0%; + --accent-l:100%; + --ax3:#ffffff; + --bg1:#000000; + --bg2:#000000; + --bg3:#ffffff; + --ui1:#ffffff; + --ui2:#ffffff; + --ui3:#ffffff; + --tx1:#ffffff; + --tx2:#ffffff; + --tx3:#ffffff; + --hl1:#ffffff; + --hl2:#ffffff; + --sp1:#000000; + --background-modifier-cover: rgba(20,20,20,1); + --vault-profile-color: var(--tx1); + --vault-profile-color-hover: var(--bg1); + --nav-item-color-hover: var(--bg1); + --nav-item-color-active: var(--bg1); +} + +.theme-light.minimal-eink-light.minimal-light-tonal { + --bg3:#bbbbbb; + --ui1:#bbbbbb; + --tx3:#999999; +} + +.theme-dark.minimal-eink-dark.minimal-dark-tonal { + --bg3:#444444; + --ui1:#444444; + --tx3:#999999; +} + +.theme-light.minimal-eink-light.minimal-light-tonal, +.theme-dark.minimal-eink-dark.minimal-dark-tonal { + --hl2: var(--bg3); + --modal-border-color: var(--ui1); + --prompt-border-color: var(--ui1); + --tag-border-color: var(--ui1); + --text-selection: var(--bg3); + --icon-color-active: var(--tx1); + --icon-color-focused: var(--tx1); + --nav-item-color-active: var(--tx1); + --nav-item-color-hover: var(--tx1); + --minimal-tab-text-color-active: var(--tx1); +} +.theme-light.minimal-eink-light.minimal-light-tonal .is-flashing, +.theme-light.minimal-eink-light.minimal-light-tonal .search-result-file-matched-text, +.theme-dark.minimal-eink-dark.minimal-dark-tonal .is-flashing, +.theme-dark.minimal-eink-dark.minimal-dark-tonal .search-result-file-matched-text { + background-color: var(--bg3); + color: var(--tx1); +} +.theme-light.minimal-eink-light.minimal-light-tonal ::selection, +.theme-light.minimal-eink-light.minimal-light-tonal #calendar-container .reset-button:hover, .theme-light.minimal-eink-light.minimal-light-tonal:not(.colorful-active) .vertical-tab-nav-item:hover, .theme-light.minimal-eink-light.minimal-light-tonal:not(.colorful-active) .vertical-tab-nav-item.is-active, +.theme-dark.minimal-eink-dark.minimal-dark-tonal ::selection, +.theme-dark.minimal-eink-dark.minimal-dark-tonal #calendar-container .reset-button:hover, +.theme-dark.minimal-eink-dark.minimal-dark-tonal:not(.colorful-active) .vertical-tab-nav-item:hover, +.theme-dark.minimal-eink-dark.minimal-dark-tonal:not(.colorful-active) .vertical-tab-nav-item.is-active { + color: var(--tx1); +} + +/* +Everforest +MIT License +Copyright (c) 2019 sainnhe +https://github.com/sainnhe/everforest +*/ +.theme-light.minimal-everforest-light { + --color-red-rgb: 248,85,82; + --color-orange-rgb: 245,125,38; + --color-yellow-rgb: 223,160,0; + --color-green-rgb: 141,161,1; + --color-cyan-rgb: 53,167,124; + --color-blue-rgb: 56,148,196; + --color-purple-rgb: 223,105,186; + --color-pink-rgb: 223,105,186; + --color-red:#f85552; + --color-orange:#f57d26; + --color-yellow:#dfa000; + --color-green:#8da101; + --color-cyan:#35a77c; + --color-blue:#3795C5; + --color-purple:#df69ba; + --color-pink:#df69ba; + --base-h:44; + --base-s:87%; + --base-l:94%; + --accent-h:83; + --accent-s:36%; + --accent-l:53%; + --bg1:#fdf6e3; + --bg2:#efebd4; + --bg3:rgba(226,222,198,.5); + --ui1:#e0dcc7; + --ui2:#bec5b2; + --ui3:#bec5b2; + --tx1:#5C6A72; + --tx2:#829181; + --tx3:#a6b0a0; + --hl1:rgba(198,214,152,.4); + --hl2:rgba(222,179,51,.3); +} + +.theme-dark.minimal-everforest-dark { + --color-red-rgb: 230,126,128; + --color-orange-rgb: 230,152,117; + --color-yellow-rgb: 219,188,127; + --color-green-rgb: 167,192,128; + --color-cyan-rgb: 131,192,146; + --color-blue-rgb: 127,187,179; + --color-purple-rgb: 223,105,186; + --color-pink-rgb: 223,105,186; + --color-red:#e67e80; + --color-orange:#e69875; + --color-yellow:#dbbc7f; + --color-green:#a7c080; + --color-cyan:#83c092; + --color-blue:#7fbbb3; + --color-purple:#d699b6; + --color-pink:#d699b6; +} + +.theme-light.minimal-everforest-light.minimal-light-tonal { + --bg2:#fdf6e3; +} + +.theme-light.minimal-everforest-light.minimal-light-white { + --bg3:#f3efda; + --ui1:#edead5; +} + +.theme-light.minimal-everforest-light.minimal-light-contrast .titlebar, +.theme-light.minimal-everforest-light.minimal-light-contrast.minimal-status-off .status-bar, +.theme-light.minimal-everforest-light.minimal-light-contrast .workspace-drawer.mod-left, +.theme-light.minimal-everforest-light.minimal-light-contrast .mod-left-split, +.theme-light.minimal-everforest-light.minimal-light-contrast .workspace-ribbon.mod-left:not(.is-collapsed), +.theme-light.minimal-everforest-light.minimal-light-contrast .theme-dark, +.theme-dark.minimal-everforest-dark { + --base-h:203; + --base-s:15%; + --base-l:23%; + --accent-h:81; + --accent-s:34%; + --accent-l:63%; + --bg1:#2d353b; + --bg2:#232a2e; + --bg3:rgba(71,82,88,0.5); + --ui1:#475258; + --ui2:#4f585e; + --ui3:#525c62; + --tx1:#d3c6aa; + --tx2:#9da9a0; + --tx3:#7a8478; + --hl1:rgba(134,70,93,.5); + --hl2:rgba(147,185,96,.3); +} + +.theme-dark.minimal-everforest-dark.minimal-dark-black { + --hl1:rgba(134,70,93,.4); + --ui1:#2b3339; +} + +/* +Flexoki +MIT License +Copyright (c) 2023 Steph Ango +https://stephango.com/flexoki +*/ +.theme-light.minimal-flexoki-light { + --color-red-rgb: 175, 48, 41; + --color-orange-rgb: 188, 82, 21; + --color-yellow-rgb: 173, 131, 1; + --color-green-rgb: 102, 128, 11; + --color-cyan-rgb: 36, 131, 123; + --color-blue-rgb: 32, 94, 166; + --color-purple-rgb: 94, 64, 157; + --color-pink-rgb: 160, 47, 111; + --color-red: #AF3029; + --color-orange: #BC5215; + --color-yellow: #AD8301; + --color-green: #66800B; + --color-cyan: #24837B; + --color-blue: #205EA6; + --color-purple: #5E409D; + --color-pink: #A02F6F; + --base-h: 48; + --base-s: 100%; + --base-l: 97%; + --accent-h: 175; + --accent-s: 57%; + --accent-l: 33%; + --bg1: #FFFCF0; + --bg2: #F2F0E5; + --bg3: rgba(16,15,15,0.05); + --ui1: #E6E4D9; + --ui2: #DAD8CE; + --ui3: #CECDC3; + --tx1: #100F0F; + --tx2: #6F6E69; + --tx3: #B7B5AC; + --hl1: rgba(187,220,206,0.3); + --hl2: rgba(247,209,61,0.3); +} + +.theme-dark.minimal-flexoki-dark { + --color-red-rgb: 209, 77, 65; + --color-orange-rgb: 218, 112, 44; + --color-yellow-rgb:208, 162, 21; + --color-green-rgb: 135, 154, 57; + --color-cyan-rgb: 58, 169, 159; + --color-blue-rgb: 67, 133, 190; + --color-purple-rgb: 139, 126, 200; + --color-pink-rgb: 206, 93, 151; + --color-red: #D14D41; + --color-orange: #DA702C; + --color-yellow: #D0A215; + --color-green: #879A39; + --color-cyan: #3AA99F; + --color-blue: #4385BE; + --color-purple: #8B7EC8; + --color-pink: #CE5D97; +} + +.theme-light.minimal-flexoki-light.minimal-light-tonal { + --bg2: #FFFCF0; +} + +.theme-light.minimal-flexoki-light.minimal-light-contrast .titlebar, +.theme-light.minimal-flexoki-light.minimal-light-contrast.minimal-status-off .status-bar, +.theme-light.minimal-flexoki-light.minimal-light-contrast .workspace-drawer.mod-left, +.theme-light.minimal-flexoki-light.minimal-light-contrast .mod-left-split, +.theme-light.minimal-flexoki-light.minimal-light-contrast .workspace-ribbon.mod-left:not(.is-collapsed), +.theme-light.minimal-flexoki-light.minimal-light-contrast .theme-dark, +.theme-dark.minimal-flexoki-dark { + --base-h: 360; + --base-s: 3%; + --base-l: 6%; + --accent-h: 175; + --accent-s: 49%; + --accent-l: 45%; + --bg1: #100F0F; + --bg2: #1C1B1A; + --bg3: rgba(254,252,240,0.05); + --ui1: #282726; + --ui2: #343331; + --ui3: #403E3C; + --tx1: #CECDC3; + --tx2: #878580; + --tx3: #575653; + --hl1: rgba(30,95,91,0.3); + --hl2: rgba(213,159,17,0.3); +} + +.theme-dark.minimal-flexoki-dark.minimal-dark-black { + --ui1: #1C1B1A; +} + +/* +Gruvbox +MIT License +https://github.com/morhetz/gruvbox +*/ +.theme-dark.minimal-gruvbox-dark, +.theme-light.minimal-gruvbox-light { + --color-red-rgb: 204, 36, 29; + --color-orange-rgb: 214,93,14; + --color-yellow-rgb: 215,153,33; + --color-green-rgb: 152,151,26; + --color-cyan-rgb: 104,157,106; + --color-blue-rgb: 69,133,136; + --color-purple-rgb: 177,98,134; + --color-pink-rgb: 177,98,134; + --color-red:#cc241d; + --color-orange:#d65d0e; + --color-yellow:#d79921; + --color-green:#98971a; + --color-cyan:#689d6a; + --color-blue:#458588; + --color-purple:#b16286; + --color-pink:#b16286; +} + +.theme-light.minimal-gruvbox-light { + --base-h:49; + --base-s:92%; + --base-l:89%; + --accent-h:24; + --accent-s:88%; + --accent-l:45%; + --bg1:#fcf2c7; + --bg2:#f2e6bd; + --bg3:#ebd9b3; + --ui1:#ebdbb2; + --ui2:#d5c4a1; + --ui3:#bdae93; + --tx1:#282828; + --tx2:#7c7065; + --tx3:#a89a85; + --hl1:rgba(192,165,125,.3); + --hl2:rgba(215,153,33,.4); +} + +.theme-light.minimal-gruvbox-light.minimal-light-tonal { + --bg2:#fcf2c7; +} + +.theme-light.minimal-gruvbox-light.minimal-light-white { + --bg3:#faf5d7; + --ui1:#f2e6bd; +} + +.theme-light.minimal-gruvbox-light.minimal-light-contrast .titlebar, +.theme-light.minimal-gruvbox-light.minimal-light-contrast.minimal-status-off .status-bar, +.theme-light.minimal-gruvbox-light.minimal-light-contrast .workspace-drawer.mod-left, +.theme-light.minimal-gruvbox-light.minimal-light-contrast .mod-left-split, +.theme-light.minimal-gruvbox-light.minimal-light-contrast .workspace-ribbon.mod-left:not(.is-collapsed), +.theme-light.minimal-gruvbox-light.minimal-light-contrast .theme-dark, +.theme-dark.minimal-gruvbox-dark { + --accent-h:24; + --accent-s:88%; + --accent-l:45%; + --bg1:#282828; + --bg2:#1e2021; + --bg3:#3d3836; + --bg3:rgba(62,57,55,0.5); + --ui1:#3c3836; + --ui2:#504945; + --ui3:#665c54; + --tx1:#fbf1c7; + --tx2:#bdae93; + --tx3:#7c6f64; + --hl1:rgba(173,149,139,0.3); + --hl2:rgba(215,153,33,.4); +} + +.theme-dark.minimal-gruvbox-dark.minimal-dark-black { + --hl1:rgba(173,149,139,0.4); + --ui1:#282828; +} + +/* macOS */ +.theme-dark.minimal-macos-dark, +.theme-light.minimal-macos-light { + --color-red-rgb: 255,59,49; + --color-orange-rgb: 255,149,2; + --color-yellow-rgb: 255,204,0; + --color-green-rgb: 42,205,65; + --color-cyan-rgb: 2,199,190; + --color-blue-rgb: 2,122,255; + --color-purple-rgb: 176,81,222; + --color-pink-rgb: 255,46,85; + --color-red:#ff3b31; + --color-orange:#ff9502; + --color-yellow:#ffcc00; + --color-green:#2acd41; + --color-cyan:#02c7be; + --color-blue:#027aff; + --color-purple:#b051de; + --color-pink:#ff2e55; +} + +.theme-light.minimal-macos-light { + --base-h:106; + --base-s:0%; + --base-l:94%; + --accent-h:212; + --accent-s:100%; + --accent-l:50%; + --bg1:#ffffff; + --bg2:#f0f0f0; + --bg3:rgba(0,0,0,.1); + --ui1:#e7e7e7; + --tx1:#454545; + --tx2:#808080; + --tx3:#b0b0b0; + --hl1:#b3d7ff; +} + +.theme-light.minimal-macos-light.minimal-light-tonal { + --bg1:#f0f0f0; + --bg2:#f0f0f0; +} + +.theme-light.minimal-macos-light.minimal-light-contrast .titlebar, +.theme-light.minimal-macos-light.minimal-light-contrast.minimal-status-off .status-bar, +.theme-light.minimal-macos-light.minimal-light-contrast .workspace-drawer.mod-left, +.theme-light.minimal-macos-light.minimal-light-contrast .mod-left-split, +.theme-light.minimal-macos-light.minimal-light-contrast .workspace-ribbon.mod-left:not(.is-collapsed), +.theme-light.minimal-macos-light.minimal-light-contrast .theme-dark, +.theme-dark.minimal-macos-dark { + --base-h:106; + --base-s:0%; + --base-l:12%; + --accent-h:212; + --accent-s:100%; + --accent-l:50%; + --bg1:#1e1e1e; + --bg2:#282828; + --bg3:rgba(255,255,255,0.11); + --divider-color:#000000; + --tab-outline-color:#000000; + --ui1:#373737; + --ui2:#515151; + --ui3:#595959; + --tx1:#dcdcdc; + --tx2:#8c8c8c; + --tx3:#686868; + --hl1:rgba(98,169,252,0.5); + --sp1:#ffffff; +} + +.theme-dark.minimal-macos-dark.minimal-dark-black { + --divider-color:#1e1e1e; + --tab-outline-color:#1e1e1e; +} + +/* +Nord +MIT License +Copyright (c) 2016-present Sven Greb (https://www.svengreb.de) +https://github.com/nordtheme/nord +*/ +.theme-dark.minimal-nord-dark, +.theme-light.minimal-nord-light { + --color-red-rgb: 191,97,106; + --color-orange-rgb: 208,138,112; + --color-yellow-rgb: 235,203,139; + --color-green-rgb: 163,190,140; + --color-cyan-rgb: 136,192,208; + --color-blue-rgb: 129,161,193; + --color-purple-rgb: 180,142,173; + --color-pink-rgb: 180,142,173; + --color-red:#BF616A; + --color-orange:#D08770; + --color-yellow:#EBCB8B; + --color-green:#A3BE8C; + --color-cyan:#88C0D0; + --color-blue:#81A1C1; + --color-purple:#B48EAD; + --color-pink:#B48EAD; +} + +.theme-light.minimal-nord-light { + --base-h:221; + --base-s:27%; + --base-l:94%; + --accent-h:213; + --accent-s:32%; + --accent-l:52%; + --bg1:#ffffff; + --bg2:#eceff4; + --bg3:rgba(157,174,206,0.25); + --ui1:#d8dee9; + --ui2:#BBCADC; + --ui3:#81a1c1; + --tx1:#2e3440; + --tx2:#7D8697; + --tx3:#ADB1B8; + --hl2:rgba(208, 135, 112, 0.35); +} + +.theme-light.minimal-nord-light.minimal-light-contrast .titlebar, +.theme-light.minimal-nord-light.minimal-light-contrast.minimal-status-off .status-bar, +.theme-light.minimal-nord-light.minimal-light-contrast .workspace-drawer.mod-left, +.theme-light.minimal-nord-light.minimal-light-contrast .mod-left-split, +.theme-light.minimal-nord-light.minimal-light-contrast .workspace-ribbon.mod-left:not(.is-collapsed), +.theme-light.minimal-nord-light.minimal-light-contrast .theme-dark, +.theme-dark.minimal-nord-dark { + --base-h:220; + --base-s:16%; + --base-l:22%; + --accent-h:213; + --accent-s:32%; + --accent-l:52%; + --bg1:#2e3440; + --bg2:#3b4252; + --bg3:rgba(135,152,190,0.15); + --ui1:#434c5e; + --ui2:#58647b; + --ui3:#58647b; + --tx1:#d8dee9; + --tx2:#9eafcc; + --tx3:#4c566a; + --hl1:rgba(129,142,180,0.3); + --hl2:rgba(208, 135, 112, 0.35); +} + +.theme-dark.minimal-nord-dark.minimal-dark-black { + --ui1:#2e3440; +} + +/* Sky color scheme, inspired by Notion */ +.theme-light.minimal-notion-light { + --base-h:39; + --base-s:18%; + --base-d:96%; + --accent-h:197; + --accent-s:71%; + --accent-l:52%; + --bg2:#f7f6f4; + --bg3:#e8e7e4; + --ui1:#ededec; + --ui2:#dbdbda; + --ui3:#aaa9a5; + --tx1:#37352f; + --tx2:#72706c; + --tx3:#aaa9a5; + --hl1:rgba(131,201,229,0.3); +} + +.theme-light.minimal-notion-light.minimal-light-contrast .titlebar, +.theme-light.minimal-notion-light.minimal-light-contrast.minimal-status-off .status-bar, +.theme-light.minimal-notion-light.minimal-light-contrast .workspace-drawer.mod-left, +.theme-light.minimal-notion-light.minimal-light-contrast .mod-left-split, +.theme-light.minimal-notion-light.minimal-light-contrast .workspace-ribbon.mod-left:not(.is-collapsed), +.theme-light.minimal-notion-light.minimal-light-contrast .theme-dark, +.theme-dark.minimal-notion-dark { + --base-h:203; + --base-s:8%; + --base-d:20%; + --accent-h:197; + --accent-s:71%; + --accent-l:52%; + --bg1:#2f3437; + --bg2:#373c3f; + --bg3:#4b5053; + --ui1:#3e4245; + --ui2:#585d5f; + --ui3:#585d5f; + --tx1:#ebebeb; + --tx2:#909295; + --tx3:#585d5f; + --hl1:rgba(57,134,164,0.3); +} + +.theme-dark.minimal-notion-dark.minimal-dark-black { + --base-d:5%; + --bg3:#232729; + --ui1:#2f3437; +} + +/* +Rosé Pine +MIT License +Copyright (c) 2023 Rosé Pine +https://github.com/rose-pine/rose-pine-theme +*/ +.theme-light.minimal-rose-pine-light { + --color-red-rgb: 180,99,122; + --color-orange-rgb: 215,130,125; + --color-yellow-rgb: 234,157,53; + --color-green-rgb: 40,105,131; + --color-cyan-rgb: 87,147,159; + --color-blue-rgb: 87,147,159; + --color-purple-rgb: 144,122,169; + --color-pink-rgb: 144,122,169; + --color-red: #b4637a; + --color-orange: #d7827e; + --color-yellow: #ea9d34; + --color-green: #286983; + --color-cyan: #56949f; + --color-blue: #56949f; + --color-purple: #907aa9; + --color-pink: #907aa9; + --base-h: 32; + --base-s: 57%; + --base-l: 95%; + --accent-h: 3; + --accent-s: 53%; + --accent-l: 67%; + --bg1: #fffaf3; + --bg2: #faf4ed; + --bg3: rgba(233,223,218,0.5); + --ui1: #EAE3E1; + --ui2: #dfdad9; + --ui3: #cecacd; + --tx1: #575279; + --tx2: #797593; + --tx3: #9893a5; + --hl1: rgba(191,180,181,0.35); +} + +.theme-dark.minimal-rose-pine-dark { + --color-red-rgb: 234,111,146; + --color-orange-rgb: 233,155,151; + --color-yellow-rgb: 246,193,119; + --color-green-rgb: 47,116,143; + --color-cyan-rgb: 157,207,215; + --color-blue-rgb: 157,207,215; + --color-purple-rgb: 196,167,231; + --color-pink-rgb: 196,167,231; + --color-red: #eb6f92; + --color-orange: #ea9a97; + --color-yellow: #f6c177; + --color-green: #31748f; + --color-cyan: #9ccfd8; + --color-blue: #9ccfd8; + --color-purple: #c4a7e7; + --color-pink: #c4a7e7; +} + +.theme-light.minimal-rose-pine-light.minimal-light-contrast .titlebar, +.theme-light.minimal-rose-pine-light.minimal-light-contrast.minimal-status-off .status-bar, +.theme-light.minimal-rose-pine-light.minimal-light-contrast .workspace-drawer.mod-left, +.theme-light.minimal-rose-pine-light.minimal-light-contrast .mod-left-split, +.theme-light.minimal-rose-pine-light.minimal-light-contrast .workspace-ribbon.mod-left:not(.is-collapsed), +.theme-light.minimal-rose-pine-light.minimal-light-contrast .theme-dark, +.theme-dark.minimal-rose-pine-dark { + --base-h: 247; + --base-s: 23%; + --base-l: 15%; + --accent-h: 2; + --accent-s: 55%; + --accent-l: 83%; + --bg1: #1f1d2e; + --bg2: #191724; + --bg3: rgba(68,66,86,0.5); + --ui1: #312F41; + --ui2: #403d52; + --ui3: #524f67; + --tx1: #e0def4; + --tx2: #908caa; + --tx3: #6e6a86; + --hl1: rgba(126,121,155,0.35); +} + +.theme-dark.minimal-rose-pine-dark.minimal-dark-black { + --ui1: #21202e; +} + +/* +Solarized +MIT License +Copyright (c) 2011 Ethan Schoonover +https://ethanschoonover.com/solarized/ +*/ +.theme-dark.minimal-solarized-dark, +.theme-light.minimal-solarized-light { + --color-red-rgb: 220, 50, 47; + --color-orange-rgb: 203,77,22; + --color-yellow-rgb: 181,137,0; + --color-green-rgb: 133,153,0; + --color-cyan-rgb: 42,161,152; + --color-blue-rgb: 38,139,210; + --color-purple-rgb: 108,113,196; + --color-pink-rgb: 211,54,130; + --color-red: #dc322f; + --color-orange: #cb4b16; + --color-yellow: #b58900; + --color-green: #859900; + --color-cyan: #2aa198; + --color-blue: #268bd2; + --color-purple: #6c71c4; + --color-pink: #d33682; +} + +.theme-light.minimal-solarized-light { + --base-h: 44; + --base-s: 87%; + --base-l: 94%; + --accent-h: 205; + --accent-s: 70%; + --accent-l: 48%; + --bg1: #fdf6e3; + --bg2: #eee8d5; + --bg3: rgba(0,0,0,0.062); + --ui1: #e9e1c8; + --ui2: #d0cab8; + --ui3: #d0cab8; + --tx1: #073642; + --tx2: #586e75; + --tx3: #ABB2AC; + --tx4: #586e75; + --hl1: rgba(202,197,182,0.3); + --hl2: rgba(203,75,22,0.3); +} + +.theme-light.minimal-solarized-light.minimal-light-tonal { + --bg2: #fdf6e3; +} + +.theme-light.minimal-solarized-light.minimal-light-contrast .titlebar, +.theme-light.minimal-solarized-light.minimal-light-contrast.minimal-status-off .status-bar, +.theme-light.minimal-solarized-light.minimal-light-contrast .workspace-drawer.mod-left, +.theme-light.minimal-solarized-light.minimal-light-contrast .mod-left-split, +.theme-light.minimal-solarized-light.minimal-light-contrast .workspace-ribbon.mod-left:not(.is-collapsed), +.theme-light.minimal-solarized-light.minimal-light-contrast .theme-dark, +.theme-dark.minimal-solarized-dark { + --accent-h: 205; + --accent-s: 70%; + --accent-l: 48%; + --base-h: 193; + --base-s: 98%; + --base-l: 11%; + --bg1: #002b36; + --bg2: #073642; + --bg3: rgba(255,255,255,0.062); + --ui1: #19414B; + --ui2: #274850; + --ui3: #31535B; + --tx1: #93a1a1; + --tx2: #657b83; + --tx3: #31535B; + --tx4: #657b83; + --hl1: rgba(15,81,98,0.3); + --hl2: rgba(203, 75, 22, 0.35); +} + +.theme-dark.minimal-solarized-dark.minimal-dark-black { + --hl1: rgba(15,81,98,0.55); + --ui1: #002b36; +} + +/* Things */ +.theme-dark.minimal-things-dark, +.theme-light.minimal-things-light { + --color-red-rgb: 255,48,108; + --color-orange-rgb: 255,149,2; + --color-yellow-rgb: 255,213,0; + --color-green-rgb: 75,191,94; + --color-cyan-rgb: 73,174,164; + --color-purple-rgb: 176,81,222; + --color-pink-rgb: 255,46,85; + --color-red:#FF306C; + --color-orange:#ff9502; + --color-yellow:#FFD500; + --color-green:#4BBF5E; + --color-cyan:#49AEA4; + --color-purple:#b051de; + --color-pink:#ff2e55; +} + +.theme-light.minimal-things-light { + --color-blue-rgb: 27,97,194; + --color-blue:#1b61c2; + --accent-h:215; + --accent-s:76%; + --accent-l:43%; + --bg1:white; + --bg2:#f5f6f8; + --bg3:rgba(162,177,187,0.25); + --ui1:#eef0f4; + --ui2:#D8DADD; + --ui3:#c1c3c6; + --tx1:#26272b; + --tx2:#7D7F84; + --tx3:#a9abb0; + --hl1:#cae2ff; +} + +.theme-dark.minimal-things-dark { + --color-blue-rgb: 77,149,247; + --color-blue:#4d95f7; +} + +.theme-light.minimal-things-light.minimal-light-tonal { + --ui1:#e6e8ec; +} + +.theme-light.minimal-things-light.minimal-light-white { + --bg3:#f5f6f8; +} + +.theme-light.minimal-things-light.minimal-light-contrast .titlebar, +.theme-light.minimal-things-light.minimal-light-contrast.minimal-status-off .status-bar, +.theme-light.minimal-things-light.minimal-light-contrast .workspace-drawer.mod-left, +.theme-light.minimal-things-light.minimal-light-contrast .mod-left-split, +.theme-light.minimal-things-light.minimal-light-contrast .workspace-ribbon.mod-left:not(.is-collapsed), +.theme-light.minimal-things-light.minimal-light-contrast .theme-dark, +.theme-dark.minimal-things-dark { + --base-h:218; + --base-s:9%; + --base-l:15%; + --accent-h:215; + --accent-s:91%; + --accent-l:64%; + --bg1:#24262a; + --bg2:#202225; + --bg3:#3d3f41; + --divider-color:#17191c; + --tab-outline-color:#17191c; + --ui1:#3A3B3F; + --ui2:#45464a; + --ui3:#6c6e70; + --tx1:#fbfbfb; + --tx2:#CBCCCD; + --tx3:#6c6e70; + --hl1:rgba(40,119,236,0.35); + --sp1:#ffffff; +} + +.theme-dark.minimal-things-dark.minimal-dark-black { + --base-d:5%; + --bg3:#24262a; + --divider-color:#24262a; + --tab-outline-color:#24262a; +} +/* Plugin compatibility */ + +/* @plugins +core: +- backlink +- command-palette +- daily-notes +- file-explorer +- file-recovery +- global-search +- graph +- outgoing-link +- outline +- page-preview +- publish +- random-note +- starred +- switcher +- sync +- tag-pane +- word-count +community: +- buttons +- dataview +- calendar +- obsidian-charts +- obsidian-checklist-plugin +- obsidian-codemirror-options +- obsidian-dictionary-plugin +- obsidian-embedded-note-titles +- obsidian-excalidraw-plugin +- obsidian-git +- obsidian-hider +- obsidian-hover-editor +- obsidian-kanban +- obsidian-metatable +- obsidian-minimal-settings +- obsidian-outliner +- obsidian-system-dark-mode +- obsidian-style-settings +- quickadd +- sliding-panes-obsidian +- todoist-sync-plugin +*/ + +/* @settings + +name: Minimal +id: minimal-style +settings: + - + id: instructions + title: Documentation + type: heading + level: 2 + collapsed: true + description: Use the Minimal Theme Settings plugin to set hotkeys, adjust features, select fonts, and choose from preset color schemes. Use the settings below for more granular customization. Go to https://minimal.guide for documentation. + - + id: interface + title: Interface colors + type: heading + level: 2 + collapsed: true + - + id: base + title: Base color + description: Defines all background and border colors unless overridden in more granular settings + type: variable-themed-color + format: hsl-split + default-light: '#' + default-dark: '#' + - + id: bg1 + title: Primary background + description: Background color for the main window + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: bg2 + title: Secondary background + description: Background color for left sidebar and menus + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: bg3 + title: Active background + description: Background color for hovered buttons and currently selected file + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: ui1 + title: Border color + type: variable-themed-color + description: For buttons, divider lines, and outlined elements + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: ui2 + title: Highlighted border color + description: Used when hovering over buttons, dividers, and outlined elements + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: ui3 + title: Active border color + description: Used when clicking buttons and outlined elements + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: accent-color + title: Accent color + type: heading + level: 2 + collapsed: true + - + id: ax1 + title: Accent color + type: variable-themed-color + description: Used primarily for links + format: hex + default-light: '#' + default-dark: '#' + - + id: ax2 + title: Accent color (hover) + type: variable-themed-color + description: Used primarily for hovered links + format: hex + default-light: '#' + default-dark: '#' + - + id: ax3 + title: Accent color interactive + type: variable-themed-color + description: Used for buttons, checklists, toggles + format: hex + default-light: '#' + default-dark: '#' + - + id: sp1 + title: Text on accent + type: variable-themed-color + description: Used primarily for text on accented buttons + format: hex + default-light: '#' + default-dark: '#' + - + id: extended-palette + title: Extended colors + type: heading + level: 2 + collapsed: true + - + id: color-red + title: Red + description: Extended palette colors are defaults used for progress bar status, syntax highlighting, colorful headings, and graph nodes + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: color-orange + title: Orange + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: color-yellow + title: Yellow + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: color-green + title: Green + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: color-cyan + title: Cyan + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: color-blue + title: Blue + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: color-purple + title: Purple + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: color-pink + title: Pink + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: bases + title: Bases + type: heading + level: 2 + collapsed: true + - + id: bases-toolbar-opacity + title: Toolbar opacity + type: variable-number-slider + default: 1 + min: 0 + max: 1 + step: 0.05 + - + id: bases-table-header-icon-display + title: Table header icons + type: variable-select + allowEmpty: false + default: flex + options: + - + label: Visible + value: flex + - + label: Hidden + value: none + - + id: bases-table-row-height + title: Table row height + type: variable-number + default: 30 + format: px + - + id: blockquotes + title: Blockquotes + type: heading + level: 2 + collapsed: true + - + id: blockquote-color + title: Blockquote text color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: blockquote-background-color + title: Blockquote background color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: blockquote-border-color + title: Blockquote border color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: blockquote-border-thickness + title: Blockquote border thickness + type: variable-number-slider + format: px + default: 1 + min: 0 + max: 5 + step: 1 + - + id: blockquote-size + title: Blockquote font size + description: Accepts any CSS font-size value + type: variable-text + default: '' + - + id: blockquote-font-style + title: Blockquote font style + type: variable-select + allowEmpty: false + default: normal + options: + - + label: Normal + value: normal + - + label: Italic + value: italic + - + id: callouts + title: Callouts + type: heading + level: 2 + collapsed: true + - + id: callouts-style + title: Callout style + type: class-select + allowEmpty: false + default: callouts-default + options: + - + label: Filled + value: callouts-default + - + label: Outlined + value: callouts-outlined + - + id: callout-blend-mode + title: Color blending + description: Blend the color of nested callouts + type: variable-select + allowEmpty: false + default: var(--highlight-mix-blend-mode) + options: + - + label: On + value: var(--highlight-mix-blend-mode) + - + label: Off + value: normal + - + id: canvas + title: Canvas + type: heading + level: 2 + collapsed: true + - + id: canvas-dot-pattern + title: Canvas dot pattern + description: Color for background dot pattern + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: code-blocks + title: Code blocks + type: heading + level: 2 + collapsed: true + - + id: code-size + title: Code font size + description: Accepts any CSS font-size value + type: variable-text + default: 0.8em + - + id: minimal-code-scroll + title: Scroll long lines + description: Turns off line wrap for code + type: class-toggle + default: false + - + id: code-background + title: Code background color + description: Background for code blocks + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: code-normal + title: Code text color + description: Color of code when syntax highlighting is not present + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: syntax-highlighting + title: Syntax highlighting + type: heading + level: 3 + collapsed: false + - + id: code-comment + title: "Syntax: comments" + description: Syntax highlighting for comments + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: code-function + title: "Syntax: functions" + description: Syntax highlighting for functions + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: code-keyword + title: "Syntax: keywords" + description: Syntax highlighting for keywords + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: code-important + title: "Syntax: important" + description: Syntax highlighting for important text + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: code-operator + title: "Syntax: operators" + description: Syntax highlighting for operators + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: code-property + title: "Syntax: properties" + description: Syntax highlighting for properties + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: code-punctuation + title: "Syntax: punctuation" + description: Syntax highlighting for punctuation + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: code-string + title: "Syntax: strings" + description: Syntax highlighting for strings + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: code-tag + title: "Syntax: tags" + description: Syntax highlighting for tags + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: code-value + title: "Syntax: values" + description: Syntax highlighting for values + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: dataview + title: Dataview + type: heading + level: 2 + collapsed: true + - + id: trim-cols + title: Trim Dataview columns + description: Disables word wrapping in table cells, and trims long text + type: class-toggle + default: true + - + id: dataview-inline-lists + title: Force tables lists inline + description: Makes lists inside of table cells inline and comma separated + type: class-toggle + default: false + - + id: max-col-width + title: Dataview maximum column width + description: Maximum width for Dataview columns, accepts any CSS width value + type: variable-text + default: 18em + - + id: embed-blocks + title: Embeds and transclusions + type: heading + level: 2 + collapsed: true + - + id: embed-strict + title: Use strict embed style globally + description: Transclusions appear seamlessly in the flow of text. Can be enabled per file using the embed-strict helper class + type: class-toggle + default: false + - + id: embed-hide-title + title: Hide embed titles + description: Hide title of the transcluded file (if strict embed is off) + type: class-toggle + default: false + - + id: embed-underline + title: Underline embedded text + description: Transcluded text is underlined. Can be enabled per file using the embed-underline helper class + type: class-toggle + default: false + - + id: embed-max-height + title: Maximum height of embeds + type: variable-text + description: For transcluded text, accepts valid CSS units + default: '' + - + id: embed-decoration-style + title: Embedded text underline style + type: variable-select + description: Requires underlines to be enabled + allowEmpty: true + default: solid + options: + - + label: Solid + value: solid + - + label: Dashed + value: dashed + - + label: Dotted + value: dotted + - + label: Double + value: double + - + label: Wavy + value: wavy + - + id: embed-decoration-color + title: Embedded text underline color + type: variable-themed-color + description: Requires underlines to be enabled + format: hex + default-light: '#' + default-dark: '#' + - + id: embed-background + title: Embed background + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: graphs + title: Graphs + type: heading + level: 2 + collapsed: true + - + id: graph-line + title: Line color + description: Changing graph colors requires closing and reopening graph panes or restarting Obsidian + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: graph-node + title: Node color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: graph-node-focused + title: Active node color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: graph-node-tag + title: Tag node color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: graph-node-attachment + title: Attachment node color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: graph-node-unresolved + title: Unresolved node color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: headings + title: Headings + type: heading + level: 2 + collapsed: true + - + id: level-1-headings + title: Level 1 Headings + type: heading + level: 3 + collapsed: true + - + id: h1-font + title: H1 font + description: Name of the font as it appears on your system + type: variable-text + default: '' + - + id: h1-size + title: H1 font size + description: Accepts any CSS font-size value + type: variable-text + default: 1.125em + - + id: h1-weight + title: H1 font weight + type: variable-number-slider + default: 600 + min: 100 + max: 900 + step: 100 + - + id: h1-color + title: H1 text color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: h1-variant + title: H1 font variant + type: variable-select + allowEmpty: false + default: normal + options: + - + label: Normal + value: normal + - + label: Small caps + value: small-caps + - + label: All small caps + value: all-small-caps + - + id: h1-style + title: H1 font style + type: variable-select + allowEmpty: false + default: normal + options: + - + label: Normal + value: normal + - + label: Italic + value: italic + - + id: h1-l + title: H1 divider line + description: Adds a border below the heading + type: class-toggle + default: false + - + id: level-2-headings + title: Level 2 Headings + type: heading + level: 3 + collapsed: true + - + id: h2-font + title: H2 font + description: Name of the font as it appears on your system + type: variable-text + default: '' + - + id: h2-size + title: H2 font size + description: Accepts any CSS font-size value + type: variable-text + default: 1em + - + id: h2-weight + title: H2 font weight + type: variable-number-slider + default: 600 + min: 100 + max: 900 + step: 100 + - + id: h2-color + title: H2 text color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: h2-variant + title: H2 font variant + type: variable-select + allowEmpty: false + default: normal + options: + - + label: Normal + value: normal + - + label: Small caps + value: small-caps + - + label: All small caps + value: all-small-caps + - + id: h2-style + title: H2 font style + type: variable-select + allowEmpty: false + default: normal + options: + - + label: Normal + value: normal + - + label: Italic + value: italic + - + id: h2-l + title: H2 divider line + description: Adds a border below the heading + type: class-toggle + default: false + - + id: level-3-headings + title: Level 3 Headings + type: heading + level: 3 + collapsed: true + - + id: h3-font + title: H3 font + description: Name of the font as it appears on your system + type: variable-text + default: '' + - + id: h3-size + title: H3 font size + description: Accepts any CSS font-size value + type: variable-text + default: 1em + - + id: h3-weight + title: H3 font weight + type: variable-number-slider + default: 600 + min: 100 + max: 900 + step: 100 + - + id: h3-color + title: H3 text color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: h3-variant + title: H3 font variant + type: variable-select + allowEmpty: false + default: normal + options: + - + label: Normal + value: normal + - + label: Small caps + value: small-caps + - + label: All small caps + value: all-small-caps + - + id: h3-style + title: H3 font style + type: variable-select + allowEmpty: false + default: normal + options: + - + label: Normal + value: normal + - + label: Italic + value: italic + - + id: h3-l + title: H3 divider line + description: Adds a border below the heading + type: class-toggle + default: false + - + id: level-4-headings + title: Level 4 Headings + type: heading + level: 3 + collapsed: true + - + id: h4-font + title: H4 font + description: Name of the font as it appears on your system + type: variable-text + default: '' + - + id: h4-size + title: H4 font size + description: Accepts any CSS font-size value + type: variable-text + default: 0.9em + - + id: h4-weight + title: H4 font weight + type: variable-number-slider + default: 500 + min: 100 + max: 900 + step: 100 + - + id: h4-color + title: H4 text color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: h4-variant + title: H4 font variant + type: variable-select + allowEmpty: false + default: small-caps + options: + - + label: Normal + value: normal + - + label: Small caps + value: small-caps + - + label: All small caps + value: all-small-caps + - + id: h4-style + title: H4 font style + type: variable-select + allowEmpty: false + default: normal + options: + - + label: Normal + value: normal + - + label: Italic + value: italic + - + id: h4-l + title: H4 divider line + description: Adds a border below the heading + type: class-toggle + default: false + - + id: level-5-headings + title: Level 5 Headings + type: heading + level: 3 + collapsed: true + - + id: h5-font + title: H5 font + description: Name of the font as it appears on your system + type: variable-text + default: '' + - + id: h5-size + title: H5 font size + description: Accepts any CSS font-size value + type: variable-text + default: 0.85em + - + id: h5-weight + title: H5 font weight + type: variable-number-slider + default: 500 + min: 100 + max: 900 + step: 100 + - + id: h5-color + title: H5 text color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: h5-variant + title: H5 font variant + type: variable-select + allowEmpty: false + default: small-caps + options: + - + label: Normal + value: normal + - + label: Small caps + value: small-caps + - + label: All small caps + value: all-small-caps + - + id: h5-style + title: H5 font style + type: variable-select + allowEmpty: false + default: normal + options: + - + label: Normal + value: normal + - + label: Italic + value: italic + - + id: h5-l + title: H5 divider line + description: Adds a border below the heading + type: class-toggle + default: false + - + id: level-6-headings + title: Level 6 Headings + type: heading + level: 3 + collapsed: true + - + id: h6-font + title: H6 font + description: Name of the font as it appears on your system + type: variable-text + default: '' + - + id: h6-size + title: H6 font size + description: Accepts any CSS font-size value + type: variable-text + default: 0.85em + - + id: h6-weight + title: H6 font weight + type: variable-number-slider + default: 400 + min: 100 + max: 900 + step: 100 + - + id: h6-color + title: H6 text color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: h6-variant + title: H6 font variant + type: variable-select + allowEmpty: false + default: small-caps + options: + - + label: Normal + value: normal + - + label: Small caps + value: small-caps + - + label: All small caps + value: all-small-caps + - + id: h6-style + title: H6 font style + type: variable-select + allowEmpty: false + default: normal + options: + - + label: Normal + value: normal + - + label: Italic + value: italic + - + id: h6-l + title: H6 divider line + type: class-toggle + description: Adds a border below the heading + default: false + - + id: icons + title: Icons + type: heading + level: 2 + collapsed: true + - + id: icon-muted + title: Icon opacity (inactive) + type: variable-number-slider + default: 0.5 + min: 0.25 + max: 1 + step: 0.05 + - + id: icon-color + title: Icon color + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: icon-color-hover + title: Icon color (hover) + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: icon-color-active + title: Icon color (active) + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: icon-color-focused + title: Icon color (focused) + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: images + title: Images + type: heading + level: 2 + collapsed: true + - + id: image-muted + title: Image opacity in dark mode + description: Level of fading for images in dark mode. Hover over images to display at full brightness. + type: variable-number-slider + default: 0.7 + min: 0.25 + max: 1 + step: 0.05 + - + id: image-radius + title: Image radius + description: Rounded corners for images + type: variable-number-slider + default: 4 + min: 0 + max: 16 + step: 1 + format: px + - + id: image-blend-light + title: Blend images in light mode + description: Allow images to blend into the color scheme background color + type: class-toggle + default: false + - + id: image-grid-fit + title: Image grid crop + description: Sets how images get cropped in a grid + type: variable-select + default: cover + options: + - + label: Crop to fit + value: cover + - + label: Show full image + value: contain + - + id: image-grid-background + title: Image grid background + description: Background of images in cells, useful when images are not cropped to fit + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: indentation-guides + title: Indentation guides + type: heading + level: 2 + collapsed: true + - + id: indentation-guide-color + title: Indentation guide color + type: variable-themed-color + format: hex + opacity: true + default-light: '#' + default-dark: '#' + - + id: indentation-guide-color-active + title: Indentation guide color (active) + type: variable-themed-color + format: hex + opacity: true + default-light: '#' + default-dark: '#' + - + id: links + title: Links + type: heading + level: 2 + collapsed: true + - + id: links-internal + title: Internal links + type: heading + level: 3 + collapsed: true + - + id: link-color + title: Internal link color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: link-color-hover + title: Internal link color (hover) + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: link-unresolved-opacity + title: Unresolved link opacity + type: variable-number-slider + default: 0.7 + min: 0.25 + max: 1 + step: 0.05 + - + id: link-unresolved-color + title: Unresolved link color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: link-unresolved-decoration-color + title: Unresolved link underline color + type: variable-themed-color + format: hex + opacity: true + default-light: '#' + default-dark: '#' + - + id: links-external + title: External links + type: heading + level: 3 + collapsed: true + - + id: link-external-color + title: External link color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: link-external-color-hover + title: External link color (hover) + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: active-line + title: Line numbers + type: heading + level: 2 + collapsed: true + - + id: active-line-on + title: Highlight active line + description: Adds a background to current line in editor + type: class-toggle + default: false + - + id: folding-offset + title: Gutter offset + description: Width of the file margin used for gutter + type: variable-number-slider + default: 32 + min: 0 + max: 60 + step: 1 + format: px + - + id: gutter-background + title: Gutter background + type: variable-themed-color + format: hex + opacity: true + default-light: '#' + default-dark: '#' + - + id: line-number-color + title: Line number color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: line-number-color-active + title: Active line number color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: active-line-bg + title: Active line background + description: Using a low opacity color is recommended to avoid conflicting with highlights + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: lists + title: Lists and tasks + type: heading + level: 2 + collapsed: true + - + id: checkbox-color + title: Checkbox color + description: Background color for completed tasks + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: checkbox-shape + title: Checkbox shape + type: class-select + allowEmpty: false + default: checkbox-circle + options: + - + label: Circle + value: checkbox-circle + - + label: Square + value: checkbox-square + - + id: minimal-strike-lists + title: Strike completed tasks + description: Adds strikethrough line and greyed text for completed tasks + type: class-toggle + default: false + - + id: list-spacing + title: List item spacing + description: Vertical space between list items in em units + type: variable-number-slider + default: 0.075 + min: 0 + max: 0.3 + step: 0.005 + format: em + - + id: list-indent + title: Nested list indentation + description: Horizontal space from left in em units + type: variable-number-slider + default: 2 + min: 1 + max: 3.5 + step: 0.1 + format: em + - + id: pdf + title: PDFs + type: heading + level: 2 + collapsed: true + - + id: pdf-page-style + title: PDF page style + description: Borders and shadows around pages + type: class-select + allowEmpty: false + default: pdf-seamless-on + options: + - + label: Seamless + value: pdf-seamless-on + - + label: Shadows + value: pdf-shadows-on + - + id: pdf-invert-dark + title: Invert PDFs in dark mode + description: Best for working with black text on white pages + type: class-toggle + default: true + - + id: pdf-blend-light + title: Blend PDFs in light mode + description: Allow PDFs to blend into the color scheme background color + type: class-toggle + default: true + - + id: pdf-dark-opacity + title: PDF opacity in dark mode + description: Fade PDF pages in dark mode + type: variable-number-slider + default: 1 + min: 0.25 + max: 1 + step: 0.05 + - + id: progress + title: Progress bars + type: heading + level: 2 + collapsed: true + - + id: progress-complete + title: Completed progress bar color + description: Defaults to your accent color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: properties + title: Properties + type: heading + level: 2 + collapsed: true + - + id: metadata-heading-off + title: Hide properties heading + description: Hide "Properties" heading above properties + type: class-toggle + default: false + - + id: metadata-add-property-off + title: Hide "Add property" button + description: Hide "Add property" button below properties + type: class-toggle + default: false + - + id: metadata-icons-off + title: Hide property icons + description: Hide icons next to property names + type: class-toggle + default: false + - + id: metadata-dividers + title: Property row lines + description: Display borders between properties + type: class-toggle + default: false + - + id: metadata-label-width-multiplier + title: Property name width + description: Width for the name of the property + type: variable-number-slider + default: 9 + min: 4 + max: 12 + step: 0.25 + - + id: sidebars + title: Sidebars + type: heading + level: 2 + collapsed: true + - + id: sidebar-tabs-style + title: Sidebar tab style + type: class-select + allowEmpty: false + default: sidebar-tabs-default + options: + - + label: Index round + value: sidebar-tabs-index + - + label: Index square + value: sidebar-tabs-square + - + label: Modern compact + value: sidebar-tabs-default + - + label: Modern wide + value: sidebar-tabs-wide + - + label: Square + value: sidebar-tabs-plain-square + - + label: Underline + value: sidebar-tabs-underline + - + id: sidebar-tabs-names + title: Sidebar tab names + type: class-select + allowEmpty: false + default: tab-names-off + options: + - + label: Hidden + value: tab-names-off + - + label: Visible + value: tab-names-on + - + label: Single tab only + value: tab-names-single + - + id: vault-profile-display + title: Vault profile position + type: class-select + allowEmpty: false + default: vault-profile-default + options: + - + label: Bottom + value: vault-profile-default + - + label: Top + value: vault-profile-top + - + id: hide-help + title: Hide help button + description: + type: class-toggle + default: false + - + id: hide-settings + title: Hide settings button + description: + type: class-toggle + default: false + - + id: mobile-left-sidebar-width + title: Mobile left sidebar width + description: Maximum width for pinned left sidebar on mobile + type: variable-number + default: 280 + format: pt + - + id: mobile-right-sidebar-width + title: Mobile right sidebar width + description: Maximum width for pinned right sidebar on mobile + type: variable-number + default: 240 + format: pt + - + id: ribbon + title: Ribbon + type: heading + level: 2 + collapsed: true + - + id: ribbon-style + title: Ribbon style + description: Display options for ribbon menu. Ribbon must be turned on in Obsidian Appearance settings for these options to work. + type: class-select + allowEmpty: false + default: ribbon-hidden + options: + - + label: Default + value: ribbon-hidden + - + label: Expand (vertical) + value: ribbon-vertical-expand + - + label: Hover (vertical) + value: ribbon-bottom-left-hover-vertical + - + label: Hover (horizontal) + value: ribbon-bottom-left-hover + - + id: tables + title: Tables + type: heading + level: 2 + collapsed: true + - + id: table-text-size + title: Table font size + description: All of the following settings apply to all tables globally. To turn on these features on a per-note basis use helper classes. See documentation. + type: variable-text + default: 1em + - + id: table-column-min-width + title: Minimum column width + type: variable-text + default: 6ch + - + id: table-column-max-width + title: Maximum column width + type: variable-text + default: none + - + id: maximize-tables-off + title: Maximize table width + description: Determines how wide tables should behave when they become wider than the line width + type: class-select + allowEmpty: false + default: maximize-tables-off + options: + - + label: Fit to line width + value: maximize-tables-off + - + label: Overflow line width + value: maximize-tables-auto + - + label: Always fill + value: maximize-tables + - + id: row-lines + title: Row lines + description: Display borders between table rows globally + type: class-toggle + default: false + - + id: col-lines + title: Column lines + description: Display borders between table columns globally + type: class-toggle + default: false + - + id: table-lines + title: Cell lines + description: Display borders around all table cells globally + type: class-toggle + default: false + - + id: row-alt + title: Striped rows + description: Display striped background in alternating table rows globally + type: class-toggle + default: false + - + id: col-alt + title: Striped columns + description: Display striped background in alternating table columns globally + type: class-toggle + default: false + - + id: table-tabular + title: Tabular figures + description: Use fixed width numbers in tables globally + type: class-toggle + default: false + - + id: table-numbers + title: Row numbers + description: Display row numbers in tables globally + type: class-toggle + default: false + - + id: table-center + title: Center small tables + description: Make small tables centered + type: class-toggle + default: false + - + id: table-nowrap + title: Disable line wrap + description: Turn off line wrapping in table cells globally + type: class-toggle + default: false + - + id: row-hover + title: Highlight active row + description: Highlight rows on hover + type: class-toggle + default: false + - + id: table-row-background-hover + title: Active row background + description: Background color for hovered tables rows + type: variable-themed-color + format: hex + opacity: true + default-light: '#' + default-dark: '#' + - + id: tabs + title: Tabs + type: heading + level: 2 + collapsed: true + - + id: header-height + title: Tab bar height + type: variable-text + default: 40px + - + id: tabs-style + title: Tab style + type: class-select + allowEmpty: false + default: tabs-default + options: + - + label: Index round + value: tabs-default + - + label: Index square + value: tabs-square + - + label: Modern + value: tabs-modern + - + label: Square + value: tabs-plain-square + - + label: Underline + value: tabs-underline + - + id: minimal-tab-text-color + title: Tab text color + type: variable-themed-color + format: hex + opacity: true + default-light: '#' + default-dark: '#' + - + id: minimal-tab-text-color-active + title: Tab text color (active) + type: variable-themed-color + format: hex + opacity: true + default-light: '#' + default-dark: '#' + - + id: tab-stacks + title: Tab stacks + type: heading + level: 2 + collapsed: true + - + id: tab-stacked-pane-width + title: Stacked width + type: variable-number + description: Width of a stacked tab in pixels + default: 700 + format: px + - + id: tab-stacked-header-width + title: Spine width + type: variable-number + description: Width of the spine in pixels + default: 40 + format: px + - + id: tab-stacked-spine-orientation + title: Spine text orientation + type: class-select + default: tab-stack-top + options: + - + label: Top + value: tab-stack-top + - + label: Top flipped + value: tab-stack-top-flipped + - + label: Bottom + value: tab-stack-bottom + - + label: Bottom flipped + value: tab-stack-bottom-flipped + - + label: Center + value: tab-stack-center + - + label: Center flipped + value: tab-stack-center-flipped + - + id: tab-stacked-spine-order + title: Spine element order + type: variable-select + default: row + options: + - + label: Default + value: row + - + label: Reversed + value: row-reverse + - + id: tags + title: Tags + type: heading + level: 2 + collapsed: true + - + id: minimal-unstyled-tags + title: Plain tags + description: Tags will render as normal text, overrides settings below + type: class-toggle + default: false + - + id: tag-radius + title: Tag shape + type: variable-select + default: 14px + options: + - + label: Pill + value: 14px + - + label: Rounded + value: 4px + - + label: Square + value: 0px + - + id: tag-border-width + title: Tag border width + type: variable-select + default: 1px + options: + - + label: None + value: 0 + - + label: Thin + value: 1px + - + label: Thick + value: 2px + - + id: tag-color + title: Tag text color + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: tag-background + title: Tag background color + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: tag-background-hover + title: Tag background color (hover) + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: text + title: Text + type: heading + level: 2 + collapsed: true + - + id: tx1 + title: Normal text color + type: variable-themed-color + description: Primary text color used by default across all elements + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: hl1 + title: Selected text background + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: hl2 + title: Highlighted text background + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: tx2 + title: Muted text color + description: Secondary text such as sidebar note titles and table headings + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: tx3 + title: Faint text color + description: tertiary text such as input placeholders, empty checkboxes, and disabled statuses + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: text-formatting + title: Markdown syntax color + description: Markdown formatting syntax text color + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: italic-color + title: Italic text color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: bold-color + title: Bold text color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: bold-modifier + title: Bold text weight + type: variable-number-slider + default: 200 + min: 100 + max: 500 + step: 100 + - + id: p-spacing + title: Paragraph spacing + description: Space between paragraphs in reading mode (Obsidian 1.3.7+) + type: variable-text + default: 1.75rem + - + id: heading-spacing + title: Heading spacing + description: Space between paragraphs and headings in reading mode (Obsidian 1.3.7+) + type: variable-text + default: 2em + - + id: titles + title: Titles + type: heading + level: 2 + collapsed: true + - + id: tab-title-bar + title: Tab title bar + description: Tab title bar must be turned on in Appearance settings + type: heading + level: 3 + collapsed: true + - + id: file-header-visibility + title: Tab title visibility + description: Visibility of the tab title text + type: class-select + default: minimal-tab-title-hover + options: + - + label: Hover only + value: minimal-tab-title-hover + - + label: Hidden + value: minimal-tab-title-hidden + - + label: Visible + value: minimal-tab-title-visible + - + id: file-header-font-size + title: Tab title font size + description: Accepts any CSS font-size value + type: variable-text + default: 0.9em + - + id: file-header-font-weight + title: Tab title font weight + type: variable-number-slider + default: 400 + min: 100 + max: 900 + step: 100 + - + id: file-header-justify + title: Tab title alignment + type: variable-select + default: center + options: + - + label: Center + value: center + - + label: Left + value: left + - + id: title-color + title: Tab title text color (active) + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: title-color-inactive + title: Tab title text color (inactive) + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: inline-title + title: Inline title + description: Inline titles must be turned on in Appearance settings + type: heading + level: 3 + collapsed: true + - + id: inline-title-font + title: Inline title font + description: Name of the font as it appears on your system + type: variable-text + default: '' + - + id: inline-title-size + title: Inline title font size + description: Accepts any CSS font-size value + type: variable-text + default: 1.125em + - + id: inline-title-weight + title: Inline title font weight + type: variable-number-slider + default: 600 + min: 100 + max: 900 + step: 100 + - + id: inline-title-color + title: Inline title text color (active) + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: translucency + title: Translucency + type: heading + level: 2 + collapsed: true + - + id: workspace-background-translucent + title: Translucent background color + type: variable-themed-color + opacity: true + format: hex + default-light: '#' + default-dark: '#' + - + id: window-frame + title: Window frame + type: heading + level: 2 + collapsed: true + - + id: window-title-off + title: Hide window frame title + description: Hide title in the custom title bar + type: class-toggle + - + id: frame-background + title: Frame background + description: Requires colorful window frame + type: variable-themed-color + opacity: true + format: hsl-split + default-light: '#' + default-dark: '#' + - + id: frame-icon-color + title: Frame icon color + description: Requires colorful frame + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: titlebar-text-color-focused + title: Frame title color (focused) + description: Requires custom title bar + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: titlebar-text-color + title: Frame title color (inactive) + description: Requires custom title bar + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: titlebar-text-weight + title: Frame title font weight + description: Requires custom title bar + type: variable-number-slider + default: 600 + min: 100 + max: 900 + step: 100 +*/ + +/* @settings +name: Minimal Cards +id: minimal-cards-style +settings: + - + id: cards-min-width + title: Card minimum width + type: variable-text + default: 180px + - + id: cards-max-width + title: Card maximum width + description: Default fills the available width, accepts valid CSS units + type: variable-text + default: 1fr + - + id: cards-mobile-width + title: Card minimum width on mobile + type: variable-text + default: 120px + - + id: cards-padding + title: Card padding + type: variable-text + default: 1.2em + - + id: cards-image-height + title: Card maximum image height + type: variable-text + default: 400px + - + id: cards-border-width + title: Card border width + type: variable-text + default: 1px + - + id: cards-background + title: Card background color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + - + id: cards-background-hover (hover) + title: Card background color + type: variable-themed-color + format: hex + default-light: '#' + default-dark: '#' + +*/ + +/* @settings +name: Minimal Advanced Settings +id: minimal-advanced +settings: + - + id: hide-markdown + title: Hide Markdown syntax + description: WARNING — This may be confusing because the characters still exist they are just hidden. + type: class-toggle + - + id: hide-settings-desc + title: Hide setting descriptions + description: Press and hold setting names to see their description. + type: class-toggle + - + id: animations + title: Animation speed + type: class-select + default: default + options: + - + label: Normal + value: default + - + label: Disabled + value: disable-animations + - + label: Fast + value: fast-animations + - + id: cursor + title: Cursor style + description: The cursor style for UI elements + type: variable-select + default: default + options: + - + label: Default + value: default + - + label: Pointer + value: pointer + - + label: Crosshair + value: crosshair + - + id: font-ui-small + title: Small font size + description: Font size in px of smaller text + type: variable-number + default: 13 + format: px + - + id: font-ui-smaller + title: Smaller font size + description: Font size in px of smallest text + type: variable-number + default: 11 + format: px + - + id: mobile-toolbar-off + title: Disable mobile toolbar + description: Turns off toolbar in editor on mobile + type: class-toggle + +*/ diff --git a/types.json b/types.json new file mode 100644 index 0000000..72e669a --- /dev/null +++ b/types.json @@ -0,0 +1,8 @@ +{ + "types": { + "aliases": "aliases", + "cssclasses": "multitext", + "tags": "tags", + "previous": "text" + } +} \ No newline at end of file