Update from obsidian - thinkpad
Affected files: .obsidian/community-plugins.json .obsidian/hotkeys.json .obsidian/plugins/homepage/data.json .obsidian/plugins/homepage/main.js .obsidian/plugins/homepage/manifest.json .obsidian/plugins/homepage/styles.css .obsidian/plugins/obsidian-omnivore/data.json .obsidian/plugins/obsidian-tasks-plugin/data.json .obsidian/plugins/obsidian-tasks-plugin/main.js .obsidian/plugins/obsidian-tasks-plugin/manifest.json .obsidian/plugins/obsidian-tasks-plugin/styles.css .obsidian/plugins/update-time-on-edit/data.json .obsidian/workspaces.json 01. Projects/Setup Obsidian/Foo.md 01. Projects/Setup Obsidian/Objective.md 01. Projects/Setup Obsidian/README.md README.md templates/Project Readme.md
This commit is contained in:
parent
037a89b43e
commit
2980070edc
18 changed files with 1303 additions and 23 deletions
23
.obsidian/plugins/homepage/data.json
vendored
Normal file
23
.obsidian/plugins/homepage/data.json
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"version": 3,
|
||||
"homepages": {
|
||||
"Main Homepage": {
|
||||
"value": "README",
|
||||
"kind": "File",
|
||||
"openOnStartup": true,
|
||||
"openMode": "Replace all open notes",
|
||||
"manualOpenMode": "Replace all open notes",
|
||||
"view": "Default view",
|
||||
"revertView": true,
|
||||
"openWhenEmpty": true,
|
||||
"refreshDataview": false,
|
||||
"autoCreate": true,
|
||||
"autoScroll": false,
|
||||
"pin": true,
|
||||
"commands": [],
|
||||
"alwaysApply": false,
|
||||
"hideReleaseNotes": false
|
||||
}
|
||||
},
|
||||
"separateMobile": false
|
||||
}
|
||||
2
.obsidian/plugins/homepage/main.js
vendored
Normal file
2
.obsidian/plugins/homepage/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/homepage/manifest.json
vendored
Normal file
10
.obsidian/plugins/homepage/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "homepage",
|
||||
"name": "Homepage",
|
||||
"version": "3.7.0",
|
||||
"minAppVersion": "1.4.10",
|
||||
"description": "Open a specified note, canvas, or workspace on startup, or set it for quick access later.",
|
||||
"author": "novov",
|
||||
"authorUrl": "https://novov.me",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
135
.obsidian/plugins/homepage/styles.css
vendored
Normal file
135
.obsidian/plugins/homepage/styles.css
vendored
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
.setting-item[nv-greyed] {
|
||||
opacity: .5;
|
||||
pointer-events: none !important;
|
||||
}
|
||||
|
||||
#nv-main-setting {
|
||||
flex-wrap: wrap;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
#nv-main-setting .setting-item-control {
|
||||
padding-top: var(--size-4-2);
|
||||
flex-basis: 100%;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
#nv-main-setting .setting-item-control input, #nv-main-setting .setting-item-control select {
|
||||
font-size: var(--font-ui-medium);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
#nv-main-setting .setting-item-control select {
|
||||
padding: var(--size-4-3) var(--size-4-4);
|
||||
padding-right: var(--size-4-8);
|
||||
height: auto;
|
||||
}
|
||||
|
||||
#nv-main-setting .setting-item-control input {
|
||||
flex-grow: 1;
|
||||
padding: var(--size-4-5) var(--size-4-4);
|
||||
}
|
||||
|
||||
#nv-main-setting .setting-item-control input[disabled] {
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
#nv-main-setting #nv-desc, #nv-main-setting #nv-info {
|
||||
flex-basis: 100%;
|
||||
}
|
||||
|
||||
#nv-main-setting #nv-desc {
|
||||
font-weight: 500;
|
||||
color: var(--text-normal);
|
||||
font-size: var(--font-ui-small);
|
||||
padding: 10px 0 0;
|
||||
}
|
||||
|
||||
#nv-main-setting #nv-desc code {
|
||||
font-family: var(--font-monospace);
|
||||
font-size: var(--font-smaller);
|
||||
border-radius: var(--radius-s);
|
||||
}
|
||||
|
||||
#nv-main-setting #nv-desc small {
|
||||
display: block;
|
||||
font-weight: 400;
|
||||
color: var(--text-muted);
|
||||
font-size: calc(var(--font-ui-smaller) * 0.9);
|
||||
padding: 5px 0 0;
|
||||
}
|
||||
|
||||
.nv-command-desc {
|
||||
padding: 1.2em 0 0;
|
||||
border-top: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.nv-command-box {
|
||||
margin: 1em 0 1.75em;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 12px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nv-command-pill {
|
||||
background-color: var(--background-secondary);
|
||||
border: 1px solid var(--background-modifier-border-hover);
|
||||
border-radius: var(--radius-s);
|
||||
font-size: var(--font-ui-small);
|
||||
padding: var(--size-2-1) var(--size-2-3);
|
||||
}
|
||||
|
||||
.nv-command-pill button {
|
||||
display: inline-block;
|
||||
padding: 0;
|
||||
margin: 0 0 0 var(--size-2-3);
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.nv-command-pill button svg {
|
||||
height: 1em;
|
||||
width: 1em;
|
||||
}
|
||||
|
||||
.nv-command-add-button {
|
||||
font-size: var(--font-ui-small);
|
||||
padding: var(--size-2-2) var(--size-4-2);
|
||||
height: auto;
|
||||
}
|
||||
|
||||
#nv-main-setting + .setting-item, .nv-command-desc + .setting-item {
|
||||
padding-top: 20px;
|
||||
border-top: none !important;
|
||||
}
|
||||
|
||||
.nv-debug-button {
|
||||
margin: 3em 0 -0.2em;
|
||||
font-size: var(--font-ui-smaller);
|
||||
padding: 0;
|
||||
height: auto;
|
||||
float: right;
|
||||
box-shadow: none !important;
|
||||
background: none !important;
|
||||
color: var(--text-accent);
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.nv-debug-button:hover, .nv-debug-button:active {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.is-phone #nv-main-setting .setting-item-control {
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.is-phone #nv-main-setting .setting-item-control select {
|
||||
width: auto;
|
||||
max-width: auto;
|
||||
}
|
||||
|
||||
.is-phone .nv-command-pill button, .is-phone .nv-command-add-button {
|
||||
width: auto;
|
||||
}
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
"dateSavedFormat": "yyyy-MM-dd HH:mm:ss",
|
||||
"apiKey": "ec3bba50-4770-471b-99b1-9953ca523d8c",
|
||||
"filter": "ADVANCED",
|
||||
"syncAt": "2024-02-22T13:22:37",
|
||||
"syncAt": "2024-02-23T11:52:54",
|
||||
"customQuery": "in:archive has:highlights",
|
||||
"template": "# {{{title}}}\n\n{{# note }}\n## Notes\n\n{{{ note }}}\n{{/ note }}\n{{#highlights.length}}\n## Highlights\n\n{{#highlights}}\n{{{text}}} \n{{#note}}\n\n> [!note]\n> {{{note}}}\n{{/note}}\n\n[source]({{{highlightUrl}}}) {{#labels}} #{{name}} {{/labels}}\n\n---\n\n{{/highlights}}\n{{/highlights.length}}\n## Original\n\n{{{ content }}}",
|
||||
"highlightOrder": "LOCATION",
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
"version": "1.6.3",
|
||||
"isSingleFile": false,
|
||||
"frequency": 60,
|
||||
"intervalId": 14,
|
||||
"intervalId": 13,
|
||||
"frontMatterVariables": [],
|
||||
"frontMatterTemplate": "id: {{{ id }}}\ntitle: >\n {{{ title }}}\nstatus: {{{ state }}}\ntags:\n - read-later\n{{#labels.length}}\n{{#labels}} - {{{name}}}\n{{/labels}}\n{{/labels.length}}\ndate_added: {{{ dateSaved}}}\nurl_omnivore: >\n {{{ omnivoreUrl}}}\nurl_original: >\n {{{ originalUrl}}}"
|
||||
}
|
||||
73
.obsidian/plugins/obsidian-tasks-plugin/data.json
vendored
Normal file
73
.obsidian/plugins/obsidian-tasks-plugin/data.json
vendored
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
{
|
||||
"globalQuery": "",
|
||||
"globalFilter": "",
|
||||
"removeGlobalFilter": false,
|
||||
"taskFormat": "tasksPluginEmoji",
|
||||
"setCreatedDate": true,
|
||||
"setDoneDate": true,
|
||||
"setCancelledDate": true,
|
||||
"autoSuggestInEditor": true,
|
||||
"autoSuggestMinMatch": 0,
|
||||
"autoSuggestMaxItems": 6,
|
||||
"provideAccessKeys": true,
|
||||
"useFilenameAsScheduledDate": false,
|
||||
"filenameAsDateFolders": [],
|
||||
"recurrenceOnNextLine": false,
|
||||
"statusSettings": {
|
||||
"coreStatuses": [
|
||||
{
|
||||
"symbol": " ",
|
||||
"name": "Todo",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": true,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "x",
|
||||
"name": "Done",
|
||||
"nextStatusSymbol": " ",
|
||||
"availableAsCommand": true,
|
||||
"type": "DONE"
|
||||
}
|
||||
],
|
||||
"customStatuses": [
|
||||
{
|
||||
"symbol": "/",
|
||||
"name": "In Progress",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": true,
|
||||
"type": "IN_PROGRESS"
|
||||
},
|
||||
{
|
||||
"symbol": "-",
|
||||
"name": "Cancelled",
|
||||
"nextStatusSymbol": " ",
|
||||
"availableAsCommand": true,
|
||||
"type": "CANCELLED"
|
||||
}
|
||||
]
|
||||
},
|
||||
"features": {
|
||||
"INTERNAL_TESTING_ENABLED_BY_DEFAULT": true
|
||||
},
|
||||
"generalSettings": {},
|
||||
"headingOpened": {
|
||||
"Core Statuses": true,
|
||||
"Custom Statuses": true
|
||||
},
|
||||
"debugSettings": {
|
||||
"ignoreSortInstructions": false,
|
||||
"showTaskHiddenData": false
|
||||
},
|
||||
"loggingOptions": {
|
||||
"minLevels": {
|
||||
"": "info",
|
||||
"tasks": "info",
|
||||
"tasks.Cache": "info",
|
||||
"tasks.Events": "info",
|
||||
"tasks.File": "info",
|
||||
"tasks.Query": "info",
|
||||
"tasks.Task": "info"
|
||||
}
|
||||
}
|
||||
}
|
||||
348
.obsidian/plugins/obsidian-tasks-plugin/main.js
vendored
Normal file
348
.obsidian/plugins/obsidian-tasks-plugin/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
12
.obsidian/plugins/obsidian-tasks-plugin/manifest.json
vendored
Normal file
12
.obsidian/plugins/obsidian-tasks-plugin/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"id": "obsidian-tasks-plugin",
|
||||
"name": "Tasks",
|
||||
"version": "6.0.0",
|
||||
"minAppVersion": "1.1.1",
|
||||
"description": "Task management for Obsidian",
|
||||
"helpUrl": "https://publish.obsidian.md/tasks/",
|
||||
"author": "Martin Schenck and Clare Macrae",
|
||||
"authorUrl": "https://github.com/obsidian-tasks-group",
|
||||
"fundingUrl": "https://github.com/sponsors/claremacrae",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
366
.obsidian/plugins/obsidian-tasks-plugin/styles.css
vendored
Normal file
366
.obsidian/plugins/obsidian-tasks-plugin/styles.css
vendored
Normal file
|
|
@ -0,0 +1,366 @@
|
|||
:root {
|
||||
--tasks-details-icon: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M8.59 16.58L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.42z'/></svg>");
|
||||
|
||||
}
|
||||
|
||||
/* Fix indentation of wrapped task lines in Tasks search results, when in Live Preview. */
|
||||
ul.contains-task-list .task-list-item-checkbox {
|
||||
margin-inline-start: calc(var(--checkbox-size) * -1.5) !important;
|
||||
}
|
||||
|
||||
.plugin-tasks-query-explanation{
|
||||
/* Prevent long explanation lines wrapping, so they are more readable,
|
||||
especially on small screens.
|
||||
|
||||
A horizontal scroll bar will be displayed, if the explanation
|
||||
is too wide to fit.
|
||||
*/
|
||||
--code-white-space: pre;
|
||||
}
|
||||
|
||||
.tasks-count {
|
||||
color: var(--text-faint);
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
/* Tooltip pop up above the description in short mode */
|
||||
.tooltip.pop-up {
|
||||
animation: pop-up-animation 200ms forwards ease-in-out;
|
||||
}
|
||||
@keyframes pop-up-animation {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(-100%) scale(1);
|
||||
}
|
||||
20% {
|
||||
opacity: 0.7;
|
||||
transform: translateY(-100%) scale(1.02);
|
||||
}
|
||||
40% {
|
||||
opacity: 1;
|
||||
transform: translateY(-100%) scale(1.05);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(-100%) scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
/* Edit and postpone */
|
||||
.tasks-edit, .tasks-postpone {
|
||||
width: 1em;
|
||||
height: 1em;
|
||||
vertical-align: middle;
|
||||
margin-left: .33em;
|
||||
cursor: pointer;
|
||||
font-family: var(--font-interface);
|
||||
color: var(--text-accent);
|
||||
}
|
||||
|
||||
a.tasks-edit, a.tasks-postpone {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.tasks-edit::after {
|
||||
content: '📝';
|
||||
}
|
||||
|
||||
.tasks-postpone::after {
|
||||
content: '⏩';
|
||||
}
|
||||
|
||||
/* Urgency score */
|
||||
.tasks-urgency {
|
||||
font-size: var(--font-ui-smaller);
|
||||
font-family: var(--font-interface);
|
||||
padding: 2px 6px;
|
||||
border-radius: var(--radius-s);
|
||||
color: var(--text-normal);
|
||||
background-color: var(--background-secondary);
|
||||
margin-left: 0.5em;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.internal-link.internal-link-short-mode {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.tasks-list-text {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.tasks-list-text .tooltip {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* Hide tags that Obsidian recognises, if `hide tags` instruction was used. */
|
||||
.tasks-layout-hide-tags .task-description a.tag {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Workaround for issue #2073: Enabling the plugin causes blockIds to be not hidden in reading view
|
||||
https://github.com/obsidian-tasks-group/obsidian-tasks/issues/2073 */
|
||||
.task-list-item .task-block-link{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.tasks-setting-important {
|
||||
color: red;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/**------------------------------------------------------------------------
|
||||
** MODAL
|
||||
*------------------------------------------------------------------------**/
|
||||
|
||||
.tasks-modal-section + .tasks-modal-section {
|
||||
margin-top: 16px;
|
||||
}
|
||||
|
||||
.tasks-modal-section label {
|
||||
display: inline-block;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.tasks-modal-section label > span {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.tasks-modal .with-accesskeys .accesskey-first::first-letter,
|
||||
.tasks-modal .with-accesskeys .accesskey {
|
||||
text-decoration: underline;
|
||||
text-underline-offset: 1pt;
|
||||
}
|
||||
|
||||
.tasks-modal-buttons {
|
||||
position: sticky;
|
||||
bottom: 0;
|
||||
background-color: var(--modal-background);
|
||||
padding-bottom: 16px;
|
||||
padding-top: 16px;
|
||||
display: grid;
|
||||
grid-template-columns: 3fr 1fr;
|
||||
column-gap: .5em;
|
||||
}
|
||||
|
||||
.tasks-modal label + input[type="checkbox"] {
|
||||
margin-left: 0.67em;
|
||||
top: 2px;
|
||||
}
|
||||
|
||||
.tasks-modal input[type="text"] {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.tasks-modal textarea {
|
||||
width: 100%;
|
||||
min-height: calc(var(--input-height) * 2);
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
.tasks-modal-priorities {
|
||||
display: grid;
|
||||
grid-template-columns: 4em 8em 8em 8em;
|
||||
grid-column-gap: 1.33em;
|
||||
}
|
||||
|
||||
.tasks-modal-priorities span {
|
||||
line-height: 1.41;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.tasks-modal-priorities label {
|
||||
border-radius: var(--input-radius);
|
||||
padding: 2px 3px;
|
||||
grid-column: 1;
|
||||
grid-row-start: 1;
|
||||
grid-row-end: 7;
|
||||
}
|
||||
|
||||
.tasks-modal-priorities input:focus + label {
|
||||
box-shadow: 0 0 0 2px var(--background-modifier-border-focus);
|
||||
border-color: var(--background-modifier-border-focus);
|
||||
}
|
||||
|
||||
.tasks-modal-priorities input:checked + label > span {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.tasks-modal-priorities input:not(:checked) + label > span:nth-child(4) {
|
||||
filter: grayscale(100%) opacity(60%);
|
||||
}
|
||||
|
||||
.tasks-modal-dates {
|
||||
display: grid;
|
||||
grid-template-columns: 5.5em auto;
|
||||
column-gap: .5em;
|
||||
row-gap: 5px;
|
||||
}
|
||||
|
||||
.tasks-modal-dates > label {
|
||||
grid-column: 1;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.tasks-modal-dates > input, .tasks-modal-dates > code {
|
||||
grid-column: 2;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.tasks-modal-dates > code {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.tasks-modal-dates > div {
|
||||
grid-column-start: 1;
|
||||
grid-column-end: 3;
|
||||
}
|
||||
|
||||
.tasks-modal-status {
|
||||
padding-bottom: 6px;
|
||||
margin-bottom: -16px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.tasks-modal-error {
|
||||
border: 1px solid red !important;
|
||||
}
|
||||
|
||||
.tasks-modal-warning {
|
||||
color: var(--text-warning) !important;
|
||||
background-color: rgba(var(--background-modifier-warning-rgb), 0.2) !important;
|
||||
}
|
||||
|
||||
.tasks-modal button:disabled {
|
||||
pointer-events: none !important;
|
||||
opacity: 0.3 !important;
|
||||
}
|
||||
|
||||
@media (max-width: 649px) {
|
||||
.tasks-modal-priorities {
|
||||
grid-template-columns: 4em 7.5em 5em;
|
||||
margin-bottom: -10px;
|
||||
}
|
||||
.tasks-modal-priorities > label {
|
||||
grid-row: 1 / span 7;
|
||||
}
|
||||
.tasks-modal-dates {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.tasks-modal-dates > label {
|
||||
margin: 0;
|
||||
}
|
||||
.tasks-modal-dates > input, .tasks-modal-dates > code {
|
||||
grid-column: 1;
|
||||
}
|
||||
.tasks-modal-dates > div {
|
||||
grid-column-end: 1;
|
||||
}
|
||||
.tasks-modal-status {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 399px) {
|
||||
.tasks-modal-priorities {
|
||||
grid-template-columns: 4em auto;
|
||||
}
|
||||
.tasks-modal-priorities > label {
|
||||
grid-row: 1 / span 7;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 259px) {
|
||||
.tasks-modal-priorities {
|
||||
grid-template-columns: 1fr;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.tasks-modal-priorities > label {
|
||||
grid-row: 1;
|
||||
}
|
||||
}
|
||||
|
||||
/**------------------------------------------------------------------------
|
||||
** SETTINGS
|
||||
*------------------------------------------------------------------------**/
|
||||
|
||||
.tasks-settings-is-invalid {
|
||||
/* Dark red text on pale background*/
|
||||
color: var(--text-error) !important;
|
||||
background-color: rgba(var(--background-modifier-error-rgb), 0.2) !important;
|
||||
}
|
||||
|
||||
|
||||
.tasks-settings .additional {
|
||||
margin: 6px 12px;
|
||||
}
|
||||
.tasks-settings .additional > .setting-item {
|
||||
border-top: 0;
|
||||
padding-top: 9px;
|
||||
}
|
||||
|
||||
|
||||
.tasks-settings details > summary {
|
||||
outline: none;
|
||||
display: block !important;
|
||||
list-style: none !important;
|
||||
list-style-type: none !important;
|
||||
min-height: 1rem;
|
||||
border-top-left-radius: 0.1rem;
|
||||
border-top-right-radius: 0.1rem;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.tasks-settings details > summary::-webkit-details-marker,
|
||||
.tasks-settings details > summary::marker {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.tasks-settings details > summary > .collapser {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 8px;
|
||||
transform: translateY(-50%);
|
||||
content: "";
|
||||
}
|
||||
|
||||
.tasks-settings details > summary > .collapser > .handle {
|
||||
transform: rotate(0deg);
|
||||
transition: transform 0.25s;
|
||||
background-color: currentColor;
|
||||
-webkit-mask-repeat: no-repeat;
|
||||
mask-repeat: no-repeat;
|
||||
-webkit-mask-size: contain;
|
||||
mask-size: contain;
|
||||
-webkit-mask-image: var(--tasks-details-icon);
|
||||
mask-image: var(--tasks-details-icon);
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.tasks-settings details[open] > summary > .collapser > .handle {
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.tasks-nested-settings .setting-item {
|
||||
border: 0px;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
.tasks-nested-settings {
|
||||
padding-bottom: 18px;
|
||||
}
|
||||
.tasks-nested-settings[open] .setting-item-heading,
|
||||
.tasks-nested-settings:not(details) .setting-item-heading {
|
||||
border-top: 0px;
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.tasks-settings .row-for-status {
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
"templates/base-note.md": "23eff811614efdfb18252c14d7d548b50a707dcfda5f4bf6e0259020f1eeb80a",
|
||||
"notes/testo.md": "24df1da31f19afae3f434032b447e804a8bcbdeeb1b270c6d04f28bfba5583fb",
|
||||
"notes/North Start.md": "662704939ce34782d6578cd8d91d5d7d738de19ce5eb34196f71733744bc1286",
|
||||
"README.md": "bf94212604234d2f47d6bfd337c42876da63945ab9bede0e15d51827fe72feda",
|
||||
"README.md": "a6a254c8e6a7d09434ac79e2682b2aca0614d7dbd45dc7bcea103d6f92968c0a",
|
||||
"notes/Devlog.md": "8796c41169b072acea9ef97211e294ba7b464ccffabc1259c7763440fea7a63e",
|
||||
"01. Projects/Obtener pasaporte/Obtener pasaporte.md": "f3c1769ca0f40f87c41954c48b4cc791cf77dc22422e15a7005a880d9b030de9",
|
||||
"02. Areas/Dotfiles/dotfiles tasks.md": "85c72a54844c201397a839d9394aa74896f3e76c2127b2325ce2e480a1fa15f9",
|
||||
|
|
@ -63,7 +63,8 @@
|
|||
"03. Resources/Notetaking/Project checklists.md": "bfe20c25bfdd6d89340744ab5d9cfa534d053489c2ea9f8406f8a7020fe2ec04",
|
||||
"03. Resources/Notetaking/Periodic reviews.md": "e680d48c5dfc3462af744c288e874f8823a6a67f880a001a9764e49263863f13",
|
||||
"03. Resources/Notetaking/tags.md": "54a539795c0386ec0af9906428a5e08a0d6ce5cd726956f126cb71d791681862",
|
||||
"01. Projects/Setup Obsidian/Objective.md": "f19f3261a64244ef8a42a9be5d7997fd6855ddabac5559110d0be9beb201c103",
|
||||
"01. Projects/Setup Obsidian/README.md": "c247c3acb778941931236e65616c85d43bf0c35813ebf134b2fb12aba263fb0a"
|
||||
"01. Projects/Setup Obsidian/Objective.md": "9fde8bbc47587e36690dbf3a2c61e1c405224728663bb0400d2c89ab6646e197",
|
||||
"01. Projects/Setup Obsidian/Foo.md": "91a207af114d10d6808497e9ba4560f29cab32a51522e8a82d0adcd422d75b5d",
|
||||
"01. Projects/Setup Obsidian/README.md": "2c26f08dd2263d99607776d2fb475acfe196453500867d77bb823c5c82d358b5"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue