data
This commit is contained in:
Vendored
+4383
File diff suppressed because one or more lines are too long
+10
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "buttons",
|
||||
"name": "Buttons",
|
||||
"description": "Create Buttons in your Obsidian notes to run commands, open links, and insert templates",
|
||||
"version": "0.5.1",
|
||||
"author": "shabegom",
|
||||
"authorUrl": "https://shbgm.ca",
|
||||
"isDesktopOnly": false,
|
||||
"minAppVersion": "0.12.8"
|
||||
}
|
||||
Vendored
+148
@@ -0,0 +1,148 @@
|
||||
/* @settings
|
||||
|
||||
name: Buttons
|
||||
id: buttons-styles
|
||||
settings:
|
||||
-
|
||||
id: button-background
|
||||
title: Background
|
||||
type: variable-themed-color
|
||||
format: hex
|
||||
opacity: false
|
||||
default-light: '#f5f6f8'
|
||||
default-dark: '#1b1b1b'
|
||||
-
|
||||
id: button-text
|
||||
title: Text
|
||||
type: variable-themed-color
|
||||
format: hex
|
||||
opacity: false
|
||||
default-light: '#1b1b1b'
|
||||
default-dark: '#f5f6f8'
|
||||
-
|
||||
id: button-border
|
||||
title: Border
|
||||
type: variable-themed-color
|
||||
format: hex
|
||||
opacity: false
|
||||
default-light: '#7a9486'
|
||||
default-dark: '#84a83a'
|
||||
-
|
||||
id: button-box-shadow
|
||||
title: Box Shadow
|
||||
type: variable-themed-color
|
||||
format: rgb
|
||||
opacity: true
|
||||
default-light: '#1b1b1b'
|
||||
default-dark: '#f5f6f8'
|
||||
-
|
||||
id: button-border-radius
|
||||
title: Border Radius
|
||||
type: variable-number
|
||||
format: px
|
||||
default: 5
|
||||
-
|
||||
id: button-size
|
||||
title: Font Size
|
||||
type: variable-number
|
||||
format: em
|
||||
default: 1
|
||||
|
||||
*/
|
||||
|
||||
.block-language-button {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
button.button-default {
|
||||
border: 0.5px solid var(--button-border, #7a9486);
|
||||
border-radius: var(--button-border-radius, 5px);
|
||||
background-color: var(--button-background);
|
||||
padding: 10px 30px;
|
||||
color: var(--button-text);
|
||||
text-decoration: none;
|
||||
font-size: var(--button-size);
|
||||
margin: 0 5px;
|
||||
box-shadow: 0 1px 3px var(--button-box-shadow, rgba(0, 0, 0, 0.12)),
|
||||
0 1px 2px var(--button-box-shadow, rgba(0, 0, 0, 0.24));
|
||||
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
|
||||
}
|
||||
|
||||
button.button-default:hover {
|
||||
z-index: 100;
|
||||
box-shadow: 0 4px 4px var(--button-box-shadow, rgba(0, 0, 0, 0.25)),
|
||||
0 10px 10px var(--button-box-shadow, rgba(0, 0, 0, 0.22));
|
||||
transform: translate3d(0px, -1.5px, 0px);
|
||||
background-color: var(--button-background);
|
||||
}
|
||||
|
||||
.theme-dark button.button-default {
|
||||
border: 0.5px solid var(--button-border, #84a83a);
|
||||
}
|
||||
|
||||
.theme-dark button.button-default:hover {
|
||||
z-index: 100;
|
||||
box-shadow: 0 4px 4px var(--button-box-shadow, rgba(210, 210, 210, 0.25)),
|
||||
0 10px 10px var(--button-box-shadow, rgba(210, 210, 210, 0.22));
|
||||
transform: translate3d(0px, -1.5px, 0px);
|
||||
}
|
||||
|
||||
button.button-inline {
|
||||
width: unset;
|
||||
height: unset;
|
||||
padding: 0 8px;
|
||||
}
|
||||
|
||||
button.blue {
|
||||
background: #76b3fa;
|
||||
color: black;
|
||||
}
|
||||
|
||||
button.red {
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
button.green {
|
||||
background: green;
|
||||
}
|
||||
|
||||
button.yellow {
|
||||
background: yellow;
|
||||
color: black;
|
||||
}
|
||||
|
||||
button.purple {
|
||||
background: #725585;
|
||||
}
|
||||
|
||||
button.blue:hover {
|
||||
background: #76b3fa;
|
||||
color: black;
|
||||
}
|
||||
|
||||
button.red:hover {
|
||||
background: red;
|
||||
}
|
||||
|
||||
button.green:hover {
|
||||
background: green;
|
||||
}
|
||||
|
||||
button.yellow:hover {
|
||||
background: yellow;
|
||||
color: black;
|
||||
}
|
||||
|
||||
button.purple:hover {
|
||||
background: #725585;
|
||||
}
|
||||
|
||||
.button-maker {
|
||||
max-width: 35rem;
|
||||
width: 35rem;
|
||||
overflow-y: auto;
|
||||
max-height: 30rem;
|
||||
padding-left: 0.5rem;
|
||||
padding-right: 0.5rem;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
Vendored
+10
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"shouldConfirmBeforeCreate": true,
|
||||
"weekStart": "locale",
|
||||
"wordsPerDot": 250,
|
||||
"showWeeklyNote": false,
|
||||
"weeklyNoteFormat": "",
|
||||
"weeklyNoteTemplate": "",
|
||||
"weeklyNoteFolder": "",
|
||||
"localeOverride": "system-default"
|
||||
}
|
||||
Vendored
+4457
File diff suppressed because it is too large
Load Diff
+10
@@ -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"
|
||||
}
|
||||
Vendored
+27
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"renderNullAs": "\\-",
|
||||
"taskCompletionTracking": true,
|
||||
"taskCompletionUseEmojiShorthand": true,
|
||||
"taskCompletionText": "completion",
|
||||
"taskCompletionDateFormat": "yyyy-MM-dd",
|
||||
"recursiveSubTaskCompletion": true,
|
||||
"warnOnEmptyResult": false,
|
||||
"refreshEnabled": true,
|
||||
"refreshInterval": 2500,
|
||||
"defaultDateFormat": "MMMM dd, yyyy",
|
||||
"defaultDateTimeFormat": "h:mm a - MMMM dd, yyyy",
|
||||
"maxRecursiveRenderDepth": 4,
|
||||
"tableIdColumnName": "File",
|
||||
"tableGroupColumnName": "Group",
|
||||
"showResultCount": true,
|
||||
"allowHtml": true,
|
||||
"inlineQueryPrefix": "=",
|
||||
"inlineJsQueryPrefix": "$=",
|
||||
"inlineQueriesInCodeblocks": true,
|
||||
"enableInlineDataview": true,
|
||||
"enableDataviewJs": true,
|
||||
"enableInlineDataviewJs": true,
|
||||
"prettyRenderInlineFields": true,
|
||||
"prettyRenderInlineFieldsInLivePreview": true,
|
||||
"dataviewJsKeyword": "dataviewjs"
|
||||
}
|
||||
Vendored
+20404
File diff suppressed because one or more lines are too long
+10
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "dataview",
|
||||
"name": "Dataview",
|
||||
"version": "0.5.64",
|
||||
"minAppVersion": "0.13.11",
|
||||
"description": "Complex data views for the data-obsessed.",
|
||||
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
||||
"authorUrl": "https://github.com/blacksmithgu",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
+146
@@ -0,0 +1,146 @@
|
||||
/** Live Preview padding fixes, specifically for DataviewJS custom HTML elements. */
|
||||
.is-live-preview .block-language-dataviewjs > p, .is-live-preview .block-language-dataviewjs > span {
|
||||
line-height: 1.0;
|
||||
}
|
||||
|
||||
.block-language-dataview {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/*****************/
|
||||
/** Table Views **/
|
||||
/*****************/
|
||||
|
||||
/* List View Default Styling; rendered internally as a table. */
|
||||
.table-view-table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table > thead > tr, .table-view-table > tbody > tr {
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.table-view-table > tbody > tr:hover {
|
||||
background-color: var(--table-row-background-hover);
|
||||
}
|
||||
|
||||
.table-view-table > thead > tr > th {
|
||||
font-weight: 700;
|
||||
font-size: larger;
|
||||
border-top: none;
|
||||
border-left: none;
|
||||
border-right: none;
|
||||
border-bottom: solid;
|
||||
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table > tbody > tr > td {
|
||||
text-align: left;
|
||||
border: none;
|
||||
font-weight: 400;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table ul, .table-view-table ol {
|
||||
margin-block-start: 0.2em !important;
|
||||
margin-block-end: 0.2em !important;
|
||||
}
|
||||
|
||||
/** Rendered value styling for any view. */
|
||||
.dataview-result-list-root-ul {
|
||||
padding: 0em !important;
|
||||
margin: 0em !important;
|
||||
}
|
||||
|
||||
.dataview-result-list-ul {
|
||||
margin-block-start: 0.2em !important;
|
||||
margin-block-end: 0.2em !important;
|
||||
}
|
||||
|
||||
/** Generic grouping styling. */
|
||||
.dataview.result-group {
|
||||
padding-left: 8px;
|
||||
}
|
||||
|
||||
/*******************/
|
||||
/** Inline Fields **/
|
||||
/*******************/
|
||||
|
||||
.dataview.inline-field-key {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-primary-alt);
|
||||
color: var(--text-nav-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-value {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--text-nav-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-standalone-value {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--text-nav-selected);
|
||||
}
|
||||
|
||||
/***************/
|
||||
/** Task View **/
|
||||
/***************/
|
||||
|
||||
.dataview.task-list-item, .dataview.task-list-basic-item {
|
||||
margin-top: 3px;
|
||||
margin-bottom: 3px;
|
||||
transition: 0.4s;
|
||||
}
|
||||
|
||||
.dataview.task-list-item:hover, .dataview.task-list-basic-item:hover {
|
||||
background-color: var(--text-selection);
|
||||
box-shadow: -40px 0 0 var(--text-selection);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*****************/
|
||||
/** Error Views **/
|
||||
/*****************/
|
||||
|
||||
div.dataview-error-box {
|
||||
width: 100%;
|
||||
min-height: 150px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border: 4px dashed var(--background-secondary);
|
||||
}
|
||||
|
||||
.dataview-error-message {
|
||||
color: var(--text-muted);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*************************/
|
||||
/** Additional Metadata **/
|
||||
/*************************/
|
||||
|
||||
.dataview.small-text {
|
||||
font-size: smaller;
|
||||
color: var(--text-muted);
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
.dataview.small-text::before {
|
||||
content: "(";
|
||||
}
|
||||
|
||||
.dataview.small-text::after {
|
||||
content: ")";
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"includeFirstLineAsNoteHeading": false,
|
||||
"excludeFirstLineInNote": false,
|
||||
"openNewNote": true,
|
||||
"headingFormat": "#",
|
||||
"newFileLocation": 1,
|
||||
"customFolder": "1.daily_notes/{{date:YYYY/MM-MMMM}}",
|
||||
"fileNamePrefix": "📝 {{date:DD-MM-YYYY}}",
|
||||
"transcludeByDefault": true,
|
||||
"noteLinkTemplate": "",
|
||||
"refactoredNoteTemplate": "{{date:DD-MM-YYYY}}\n- - -\n# {{new_note_title}} - {{title}}\n- - -\n{{new_note_content}}\n- - -\n{{title}} {{link}}",
|
||||
"normalizeHeaderLevels": true
|
||||
}
|
||||
+6816
File diff suppressed because one or more lines are too long
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"id": "note-refactor-obsidian",
|
||||
"name": "Note Refactor",
|
||||
"version": "1.8.2",
|
||||
"description": "Extract note content into new notes and split notes",
|
||||
"isDesktopOnly": false,
|
||||
"js": "main.js",
|
||||
"css": "style.css"
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
.note-refactor-filename .setting-item-info {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.note-refactor-filename .setting-item-name {
|
||||
padding-top: 10px;
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"snapStepMinutes": 10,
|
||||
"progressIndicator": "bar",
|
||||
"showTaskNotification": false,
|
||||
"zoomLevel": 2,
|
||||
"timelineIcon": "calendar-with-checkmark",
|
||||
"endLabel": "All done",
|
||||
"startHour": 9,
|
||||
"timelineDateFormat": "YYYY-MM-DD",
|
||||
"centerNeedle": true,
|
||||
"plannerHeading": "Day planner",
|
||||
"plannerHeadingLevel": 1,
|
||||
"timelineColored": false,
|
||||
"timelineStartColor": "#006466",
|
||||
"timelineEndColor": "#4d194d",
|
||||
"timestampFormat": "HH:mm",
|
||||
"hourFormat": "H",
|
||||
"dataviewSource": "",
|
||||
"extendDurationUntilNext": false,
|
||||
"defaultDurationMinutes": 30,
|
||||
"showTimestampInTaskBlock": false,
|
||||
"showUncheduledTasks": true,
|
||||
"showUnscheduledNestedTasks": true,
|
||||
"showNow": true,
|
||||
"showNext": true,
|
||||
"pluginVersion": "0.20.2",
|
||||
"showCompletedTasks": true,
|
||||
"showSubtasksInTaskBlocks": true,
|
||||
"icals": [],
|
||||
"colorOverrides": [],
|
||||
"editMode": "simple",
|
||||
"copyOnDrag": false,
|
||||
"showDataviewMigrationWarning": false,
|
||||
"unscheduledTasksHeight": 100
|
||||
}
|
||||
+49407
File diff suppressed because one or more lines are too long
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "obsidian-day-planner",
|
||||
"name": "Day Planner",
|
||||
"version": "0.20.2",
|
||||
"minAppVersion": "0.16.0",
|
||||
"description": "A day planner with clean UI and readable syntax",
|
||||
"author": "James Lynch, continued by Ivan Lednev",
|
||||
"authorUrl": "https://github.com/ivan-lednev",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/machineelf",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
+480
@@ -0,0 +1,480 @@
|
||||
/* src/styles.scss */
|
||||
.progress-pie {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
border-radius: 50%;
|
||||
background: #eee;
|
||||
background-image: linear-gradient(to right, transparent 50%, #4CC9D8 0);
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
.progress-pie::before {
|
||||
content: "";
|
||||
display: block;
|
||||
margin-left: 50%;
|
||||
height: 100%;
|
||||
border-radius: 0 100% 100% 0/50%;
|
||||
background-color: inherit;
|
||||
transform-origin: left;
|
||||
}
|
||||
.progress-pie::after {
|
||||
content: attr(data-value);
|
||||
position: absolute;
|
||||
width: 70%;
|
||||
height: 70%;
|
||||
margin: auto;
|
||||
border-radius: 50%;
|
||||
background-color: #fff;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
text-align: center;
|
||||
font: 900 20px/41px Tahoma;
|
||||
}
|
||||
.progress-pie[data-value="0"]:before {
|
||||
transform: rotate(0turn);
|
||||
}
|
||||
.progress-pie[data-value="1"]:before {
|
||||
transform: rotate(0.01turn);
|
||||
}
|
||||
.progress-pie[data-value="2"]:before {
|
||||
transform: rotate(0.02turn);
|
||||
}
|
||||
.progress-pie[data-value="3"]:before {
|
||||
transform: rotate(0.03turn);
|
||||
}
|
||||
.progress-pie[data-value="4"]:before {
|
||||
transform: rotate(0.04turn);
|
||||
}
|
||||
.progress-pie[data-value="5"]:before {
|
||||
transform: rotate(0.05turn);
|
||||
}
|
||||
.progress-pie[data-value="6"]:before {
|
||||
transform: rotate(0.06turn);
|
||||
}
|
||||
.progress-pie[data-value="7"]:before {
|
||||
transform: rotate(0.07turn);
|
||||
}
|
||||
.progress-pie[data-value="8"]:before {
|
||||
transform: rotate(0.08turn);
|
||||
}
|
||||
.progress-pie[data-value="9"]:before {
|
||||
transform: rotate(0.09turn);
|
||||
}
|
||||
.progress-pie[data-value="10"]:before {
|
||||
transform: rotate(0.1turn);
|
||||
}
|
||||
.progress-pie[data-value="11"]:before {
|
||||
transform: rotate(0.11turn);
|
||||
}
|
||||
.progress-pie[data-value="12"]:before {
|
||||
transform: rotate(0.12turn);
|
||||
}
|
||||
.progress-pie[data-value="13"]:before {
|
||||
transform: rotate(0.13turn);
|
||||
}
|
||||
.progress-pie[data-value="14"]:before {
|
||||
transform: rotate(0.14turn);
|
||||
}
|
||||
.progress-pie[data-value="15"]:before {
|
||||
transform: rotate(0.15turn);
|
||||
}
|
||||
.progress-pie[data-value="16"]:before {
|
||||
transform: rotate(0.16turn);
|
||||
}
|
||||
.progress-pie[data-value="17"]:before {
|
||||
transform: rotate(0.17turn);
|
||||
}
|
||||
.progress-pie[data-value="18"]:before {
|
||||
transform: rotate(0.18turn);
|
||||
}
|
||||
.progress-pie[data-value="19"]:before {
|
||||
transform: rotate(0.19turn);
|
||||
}
|
||||
.progress-pie[data-value="20"]:before {
|
||||
transform: rotate(0.2turn);
|
||||
}
|
||||
.progress-pie[data-value="21"]:before {
|
||||
transform: rotate(0.21turn);
|
||||
}
|
||||
.progress-pie[data-value="22"]:before {
|
||||
transform: rotate(0.22turn);
|
||||
}
|
||||
.progress-pie[data-value="23"]:before {
|
||||
transform: rotate(0.23turn);
|
||||
}
|
||||
.progress-pie[data-value="24"]:before {
|
||||
transform: rotate(0.24turn);
|
||||
}
|
||||
.progress-pie[data-value="25"]:before {
|
||||
transform: rotate(0.25turn);
|
||||
}
|
||||
.progress-pie[data-value="26"]:before {
|
||||
transform: rotate(0.26turn);
|
||||
}
|
||||
.progress-pie[data-value="27"]:before {
|
||||
transform: rotate(0.27turn);
|
||||
}
|
||||
.progress-pie[data-value="28"]:before {
|
||||
transform: rotate(0.28turn);
|
||||
}
|
||||
.progress-pie[data-value="29"]:before {
|
||||
transform: rotate(0.29turn);
|
||||
}
|
||||
.progress-pie[data-value="30"]:before {
|
||||
transform: rotate(0.3turn);
|
||||
}
|
||||
.progress-pie[data-value="31"]:before {
|
||||
transform: rotate(0.31turn);
|
||||
}
|
||||
.progress-pie[data-value="32"]:before {
|
||||
transform: rotate(0.32turn);
|
||||
}
|
||||
.progress-pie[data-value="33"]:before {
|
||||
transform: rotate(0.33turn);
|
||||
}
|
||||
.progress-pie[data-value="34"]:before {
|
||||
transform: rotate(0.34turn);
|
||||
}
|
||||
.progress-pie[data-value="35"]:before {
|
||||
transform: rotate(0.35turn);
|
||||
}
|
||||
.progress-pie[data-value="36"]:before {
|
||||
transform: rotate(0.36turn);
|
||||
}
|
||||
.progress-pie[data-value="37"]:before {
|
||||
transform: rotate(0.37turn);
|
||||
}
|
||||
.progress-pie[data-value="38"]:before {
|
||||
transform: rotate(0.38turn);
|
||||
}
|
||||
.progress-pie[data-value="39"]:before {
|
||||
transform: rotate(0.39turn);
|
||||
}
|
||||
.progress-pie[data-value="40"]:before {
|
||||
transform: rotate(0.4turn);
|
||||
}
|
||||
.progress-pie[data-value="41"]:before {
|
||||
transform: rotate(0.41turn);
|
||||
}
|
||||
.progress-pie[data-value="42"]:before {
|
||||
transform: rotate(0.42turn);
|
||||
}
|
||||
.progress-pie[data-value="43"]:before {
|
||||
transform: rotate(0.43turn);
|
||||
}
|
||||
.progress-pie[data-value="44"]:before {
|
||||
transform: rotate(0.44turn);
|
||||
}
|
||||
.progress-pie[data-value="45"]:before {
|
||||
transform: rotate(0.45turn);
|
||||
}
|
||||
.progress-pie[data-value="46"]:before {
|
||||
transform: rotate(0.46turn);
|
||||
}
|
||||
.progress-pie[data-value="47"]:before {
|
||||
transform: rotate(0.47turn);
|
||||
}
|
||||
.progress-pie[data-value="48"]:before {
|
||||
transform: rotate(0.48turn);
|
||||
}
|
||||
.progress-pie[data-value="49"]:before {
|
||||
transform: rotate(0.49turn);
|
||||
}
|
||||
.progress-pie[data-value="50"]:before {
|
||||
transform: rotate(0.5turn);
|
||||
}
|
||||
.progress-pie[data-value="51"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.01turn);
|
||||
}
|
||||
.progress-pie[data-value="52"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.02turn);
|
||||
}
|
||||
.progress-pie[data-value="53"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.03turn);
|
||||
}
|
||||
.progress-pie[data-value="54"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.04turn);
|
||||
}
|
||||
.progress-pie[data-value="55"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.05turn);
|
||||
}
|
||||
.progress-pie[data-value="56"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.06turn);
|
||||
}
|
||||
.progress-pie[data-value="57"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.07turn);
|
||||
}
|
||||
.progress-pie[data-value="58"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.08turn);
|
||||
}
|
||||
.progress-pie[data-value="59"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.09turn);
|
||||
}
|
||||
.progress-pie[data-value="60"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.1turn);
|
||||
}
|
||||
.progress-pie[data-value="61"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.11turn);
|
||||
}
|
||||
.progress-pie[data-value="62"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.12turn);
|
||||
}
|
||||
.progress-pie[data-value="63"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.13turn);
|
||||
}
|
||||
.progress-pie[data-value="64"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.14turn);
|
||||
}
|
||||
.progress-pie[data-value="65"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.15turn);
|
||||
}
|
||||
.progress-pie[data-value="66"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.16turn);
|
||||
}
|
||||
.progress-pie[data-value="67"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.17turn);
|
||||
}
|
||||
.progress-pie[data-value="68"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.18turn);
|
||||
}
|
||||
.progress-pie[data-value="69"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.19turn);
|
||||
}
|
||||
.progress-pie[data-value="70"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.2turn);
|
||||
}
|
||||
.progress-pie[data-value="71"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.21turn);
|
||||
}
|
||||
.progress-pie[data-value="72"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.22turn);
|
||||
}
|
||||
.progress-pie[data-value="73"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.23turn);
|
||||
}
|
||||
.progress-pie[data-value="74"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.24turn);
|
||||
}
|
||||
.progress-pie[data-value="75"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.25turn);
|
||||
}
|
||||
.progress-pie[data-value="76"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.26turn);
|
||||
}
|
||||
.progress-pie[data-value="77"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.27turn);
|
||||
}
|
||||
.progress-pie[data-value="78"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.28turn);
|
||||
}
|
||||
.progress-pie[data-value="79"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.29turn);
|
||||
}
|
||||
.progress-pie[data-value="80"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.3turn);
|
||||
}
|
||||
.progress-pie[data-value="81"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.31turn);
|
||||
}
|
||||
.progress-pie[data-value="82"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.32turn);
|
||||
}
|
||||
.progress-pie[data-value="83"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.33turn);
|
||||
}
|
||||
.progress-pie[data-value="84"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.34turn);
|
||||
}
|
||||
.progress-pie[data-value="85"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.35turn);
|
||||
}
|
||||
.progress-pie[data-value="86"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.36turn);
|
||||
}
|
||||
.progress-pie[data-value="87"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.37turn);
|
||||
}
|
||||
.progress-pie[data-value="88"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.38turn);
|
||||
}
|
||||
.progress-pie[data-value="89"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.39turn);
|
||||
}
|
||||
.progress-pie[data-value="90"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.4turn);
|
||||
}
|
||||
.progress-pie[data-value="91"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.41turn);
|
||||
}
|
||||
.progress-pie[data-value="92"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.42turn);
|
||||
}
|
||||
.progress-pie[data-value="93"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.43turn);
|
||||
}
|
||||
.progress-pie[data-value="94"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.44turn);
|
||||
}
|
||||
.progress-pie[data-value="95"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.45turn);
|
||||
}
|
||||
.progress-pie[data-value="96"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.46turn);
|
||||
}
|
||||
.progress-pie[data-value="97"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.47turn);
|
||||
}
|
||||
.progress-pie[data-value="98"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.48turn);
|
||||
}
|
||||
.progress-pie[data-value="99"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.49turn);
|
||||
}
|
||||
.progress-pie[data-value="100"]:before {
|
||||
background-color: #4CC9D8;
|
||||
transform: rotate(0.5turn);
|
||||
}
|
||||
@keyframes pulse {
|
||||
from {
|
||||
opacity: 0.8;
|
||||
}
|
||||
to {
|
||||
opacity: 0.2;
|
||||
}
|
||||
}
|
||||
.day-planner {
|
||||
position: relative;
|
||||
}
|
||||
.day-planner .status-bar-item-segment:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
.status-bar-item.plugin-obsidian-day-planner {
|
||||
display: flex;
|
||||
gap: var(--size-2-2);
|
||||
}
|
||||
.day-planner-progress-bar {
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
align-self: stretch;
|
||||
min-width: 100px;
|
||||
background-color: var(--text-faint);
|
||||
border-radius: var(--radius-s);
|
||||
}
|
||||
.day-planner-progress-value {
|
||||
background-color: var(--color-accent);
|
||||
}
|
||||
.day-planner-progress-value.green,
|
||||
.day-planner .progress-pie.green::before {
|
||||
background-color: #4caf50;
|
||||
}
|
||||
.day-planner .progress-pie.green {
|
||||
background-image: linear-gradient(to right, transparent 50%, #4caf50 0);
|
||||
}
|
||||
.day-planner-status-bar-text {
|
||||
float: left;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.day-planner-status-card {
|
||||
position: absolute;
|
||||
top: -140px;
|
||||
display: none;
|
||||
width: 300px;
|
||||
padding: 8px;
|
||||
background-color: var(--background-secondary-alt);
|
||||
border-radius: 4px;
|
||||
}
|
||||
.day-planner-status-card .arrow-down {
|
||||
position: absolute;
|
||||
width: 20px;
|
||||
border-top: 20px solid var(--background-secondary-alt);
|
||||
border-right: 20px solid transparent;
|
||||
border-left: 20px solid transparent;
|
||||
}
|
||||
.progress-pie.day-planner {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
.progress-pie.day-planner::after {
|
||||
width: 80%;
|
||||
height: 80%;
|
||||
}
|
||||
.progress-pie.day-planner::after {
|
||||
font-size: 8px;
|
||||
font-weight: 900;
|
||||
line-height: 13px;
|
||||
color: transparent;
|
||||
background-color: transparent;
|
||||
}
|
||||
[data-type=timeline] .view-content,
|
||||
[data-type=weekly] .view-content,
|
||||
[data-type=timeTracker] .view-content {
|
||||
--time-ruler-width: 30px;
|
||||
--scrollbar-width: 12px;
|
||||
--shadow-color: #00000010;
|
||||
--shadow-right: 2px 0px 2px var(--shadow-color);
|
||||
--shadow-bottom: 0px 2px 2px var(--shadow-color);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 0;
|
||||
}
|
||||
.absolute-stretch-x {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
left: 0;
|
||||
}
|
||||
.day-planner-release-notes-modal .modal-content {
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
}
|
||||
+35304
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"id": "obsidian-excalidraw-plugin",
|
||||
"name": "Excalidraw",
|
||||
"version": "2.0.25",
|
||||
"minAppVersion": "1.1.6",
|
||||
"description": "An Obsidian plugin to edit and view Excalidraw drawings",
|
||||
"author": "Zsolt Viczian",
|
||||
"authorUrl": "https://zsolt.blog",
|
||||
"fundingUrl": "https://ko-fi.com/zsolt",
|
||||
"helpUrl": "https://github.com/zsviczian/obsidian-excalidraw-plugin#readme",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
+58
@@ -0,0 +1,58 @@
|
||||
{
|
||||
"commitMessage": "vault backup: {{date}}",
|
||||
"commitDateFormat": "YYYY-MM-DD HH:mm:ss",
|
||||
"autoSaveInterval": 0,
|
||||
"autoPushInterval": 0,
|
||||
"autoPullInterval": 0,
|
||||
"autoPullOnBoot": true,
|
||||
"disablePush": false,
|
||||
"pullBeforePush": true,
|
||||
"disablePopups": false,
|
||||
"disablePopupsForNoChanges": false,
|
||||
"listChangedFilesInMessageBody": false,
|
||||
"showStatusBar": true,
|
||||
"updateSubmodules": false,
|
||||
"syncMethod": "merge",
|
||||
"customMessageOnAutoBackup": false,
|
||||
"autoBackupAfterFileChange": false,
|
||||
"treeStructure": false,
|
||||
"refreshSourceControl": true,
|
||||
"basePath": "",
|
||||
"differentIntervalCommitAndPush": false,
|
||||
"changedFilesInStatusBar": true,
|
||||
"showedMobileNotice": true,
|
||||
"refreshSourceControlTimer": 7000,
|
||||
"showBranchStatusBar": true,
|
||||
"setLastSaveToLastCommit": false,
|
||||
"submoduleRecurseCheckout": false,
|
||||
"gitDir": "",
|
||||
"showFileMenu": true,
|
||||
"authorInHistoryView": "hide",
|
||||
"dateInHistoryView": false,
|
||||
"lineAuthor": {
|
||||
"show": false,
|
||||
"followMovement": "inactive",
|
||||
"authorDisplay": "initials",
|
||||
"showCommitHash": false,
|
||||
"dateTimeFormatOptions": "date",
|
||||
"dateTimeFormatCustomString": "YYYY-MM-DD HH:mm",
|
||||
"dateTimeTimezone": "viewer-local",
|
||||
"coloringMaxAge": "1y",
|
||||
"colorNew": {
|
||||
"r": 255,
|
||||
"g": 150,
|
||||
"b": 150
|
||||
},
|
||||
"colorOld": {
|
||||
"r": 120,
|
||||
"g": 160,
|
||||
"b": 255
|
||||
},
|
||||
"textColorCss": "var(--text-muted)",
|
||||
"ignoreWhitespace": false,
|
||||
"gutterSpacingFallbackLength": 5,
|
||||
"lastShownAuthorDisplay": "initials",
|
||||
"lastShownDateTimeFormatOptions": "date"
|
||||
},
|
||||
"autoCommitMessage": "vault backup: {{date}}"
|
||||
}
|
||||
+45279
File diff suppressed because one or more lines are too long
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"id": "obsidian-git",
|
||||
"name": "Git",
|
||||
"description": "Backup your vault with Git.",
|
||||
"isDesktopOnly": false,
|
||||
"fundingUrl": "https://ko-fi.com/vinzent",
|
||||
"js": "main.js",
|
||||
"version": "2.24.1"
|
||||
}
|
||||
+551
@@ -0,0 +1,551 @@
|
||||
@keyframes loading {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="git-view"] .button-border {
|
||||
border: 2px solid var(--interactive-accent);
|
||||
border-radius: var(--radius-s);
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="git-view"] .view-content {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="git-history-view"] .view-content {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.loading > svg {
|
||||
animation: 2s linear infinite loading;
|
||||
transform-origin: 50% 50%;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.obsidian-git-center {
|
||||
margin: auto;
|
||||
text-align: center;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.obsidian-git-textarea {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.obsidian-git-center-button {
|
||||
display: block;
|
||||
margin: 20px auto;
|
||||
}
|
||||
|
||||
.tooltip.mod-left {
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
.tooltip.mod-right {
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
.git-tools {
|
||||
display: flex;
|
||||
margin-left: auto;
|
||||
}
|
||||
.git-tools .type {
|
||||
padding-left: var(--size-2-1);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 11px;
|
||||
}
|
||||
|
||||
.git-tools .type[data-type="M"] {
|
||||
color: orange;
|
||||
}
|
||||
.git-tools .type[data-type="D"] {
|
||||
color: red;
|
||||
}
|
||||
.git-tools .buttons {
|
||||
display: flex;
|
||||
}
|
||||
.git-tools .buttons > * {
|
||||
padding: 0 0;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.git-author {
|
||||
color: var(--text-accent);
|
||||
}
|
||||
|
||||
.git-date {
|
||||
color: var(--text-accent);
|
||||
}
|
||||
|
||||
.git-ref {
|
||||
color: var(--text-accent);
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-d-none {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-wrapper {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header {
|
||||
background-color: var(--background-primary);
|
||||
border-bottom: 1px solid var(--interactive-accent);
|
||||
font-family: var(--font-monospace);
|
||||
height: 35px;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
|
||||
font-size: 14px;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-added {
|
||||
border: 1px solid #b4e2b4;
|
||||
border-radius: 5px 0 0 5px;
|
||||
color: #399839;
|
||||
padding: 2px;
|
||||
text-align: right;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-deleted {
|
||||
border: 1px solid #e9aeae;
|
||||
border-radius: 0 5px 5px 0;
|
||||
color: #c33;
|
||||
margin-left: 1px;
|
||||
padding: 2px;
|
||||
text-align: left;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name-wrapper {
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
font-size: 15px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name {
|
||||
overflow-x: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-wrapper {
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: 3px;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse {
|
||||
-webkit-box-pack: end;
|
||||
-ms-flex-pack: end;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: 3px;
|
||||
cursor: pointer;
|
||||
display: none;
|
||||
font-size: 12px;
|
||||
justify-content: flex-end;
|
||||
padding: 4px 8px;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse.d2h-selected {
|
||||
background-color: #c8e1ff;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse-input {
|
||||
margin: 0 4px 0 0;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-diff-table {
|
||||
border-collapse: collapse;
|
||||
font-family: Menlo, Consolas, monospace;
|
||||
font-size: 13px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-files-diff {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-diff {
|
||||
overflow-y: hidden;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-side-diff {
|
||||
display: inline-block;
|
||||
margin-bottom: -8px;
|
||||
margin-right: -4px;
|
||||
overflow-x: scroll;
|
||||
overflow-y: hidden;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line {
|
||||
padding: 0 8em;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
|
||||
display: inline-block;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
white-space: nowrap;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
|
||||
padding: 0 4.5em;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-ctn {
|
||||
word-wrap: normal;
|
||||
background: none;
|
||||
display: inline-block;
|
||||
padding: 0;
|
||||
-webkit-user-select: text;
|
||||
-moz-user-select: text;
|
||||
-ms-user-select: text;
|
||||
user-select: text;
|
||||
vertical-align: middle;
|
||||
white-space: pre;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
|
||||
.theme-light
|
||||
.workspace-leaf-content[data-type="diff-view"]
|
||||
.d2h-code-side-line
|
||||
del {
|
||||
background-color: #ffb6ba;
|
||||
}
|
||||
|
||||
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
|
||||
.theme-dark
|
||||
.workspace-leaf-content[data-type="diff-view"]
|
||||
.d2h-code-side-line
|
||||
del {
|
||||
background-color: #8d232881;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line del,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line ins {
|
||||
border-radius: 0.2em;
|
||||
display: inline-block;
|
||||
margin-top: -1px;
|
||||
text-decoration: none;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
|
||||
.theme-light
|
||||
.workspace-leaf-content[data-type="diff-view"]
|
||||
.d2h-code-side-line
|
||||
ins {
|
||||
background-color: #97f295;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
|
||||
.theme-dark
|
||||
.workspace-leaf-content[data-type="diff-view"]
|
||||
.d2h-code-side-line
|
||||
ins {
|
||||
background-color: #1d921996;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix {
|
||||
word-wrap: normal;
|
||||
background: none;
|
||||
display: inline;
|
||||
padding: 0;
|
||||
white-space: pre;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .line-num1 {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .line-num1,
|
||||
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
overflow: hidden;
|
||||
padding: 0 0.5em;
|
||||
text-overflow: ellipsis;
|
||||
width: 3.5em;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber {
|
||||
background-color: var(--background-primary);
|
||||
border: solid var(--background-modifier-border);
|
||||
border-width: 0 1px;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
color: var(--text-muted);
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
text-align: right;
|
||||
width: 7.5em;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber:after {
|
||||
content: "\200b";
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
|
||||
background-color: var(--background-primary);
|
||||
border: solid var(--background-modifier-border);
|
||||
border-width: 0 1px;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
color: var(--text-muted);
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
padding: 0 0.5em;
|
||||
position: absolute;
|
||||
text-align: right;
|
||||
text-overflow: ellipsis;
|
||||
width: 4em;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-diff-tbody tr {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber:after {
|
||||
content: "\200b";
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-emptyplaceholder,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
|
||||
background-color: var(--background-primary);
|
||||
border-color: var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
|
||||
direction: rtl;
|
||||
}
|
||||
|
||||
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-del {
|
||||
background-color: #fee8e9;
|
||||
border-color: #e9aeae;
|
||||
}
|
||||
|
||||
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
|
||||
background-color: #dfd;
|
||||
border-color: #b4e2b4;
|
||||
}
|
||||
|
||||
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-del {
|
||||
background-color: #521b1d83;
|
||||
border-color: #691d1d73;
|
||||
}
|
||||
|
||||
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
|
||||
background-color: rgba(30, 71, 30, 0.5);
|
||||
border-color: #13501381;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-info {
|
||||
background-color: var(--background-primary);
|
||||
border-color: var(--background-modifier-border);
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.theme-light
|
||||
.workspace-leaf-content[data-type="diff-view"]
|
||||
.d2h-file-diff
|
||||
.d2h-del.d2h-change {
|
||||
background-color: #fdf2d0;
|
||||
}
|
||||
|
||||
.theme-dark
|
||||
.workspace-leaf-content[data-type="diff-view"]
|
||||
.d2h-file-diff
|
||||
.d2h-del.d2h-change {
|
||||
background-color: #55492480;
|
||||
}
|
||||
|
||||
.theme-light
|
||||
.workspace-leaf-content[data-type="diff-view"]
|
||||
.d2h-file-diff
|
||||
.d2h-ins.d2h-change {
|
||||
background-color: #ded;
|
||||
}
|
||||
|
||||
.theme-dark
|
||||
.workspace-leaf-content[data-type="diff-view"]
|
||||
.d2h-file-diff
|
||||
.d2h-ins.d2h-change {
|
||||
background-color: rgba(37, 78, 37, 0.418);
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper a {
|
||||
color: #3572b0;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"]
|
||||
.d2h-file-list-wrapper
|
||||
a:visited {
|
||||
color: #3572b0;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-header {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-title {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-line {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list {
|
||||
display: block;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list > li {
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
margin: 0;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list > li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-file-switch {
|
||||
cursor: pointer;
|
||||
display: none;
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-icon {
|
||||
fill: currentColor;
|
||||
margin-right: 10px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted {
|
||||
color: #c33;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-added {
|
||||
color: #399839;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-changed {
|
||||
color: #d0b44c;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-moved {
|
||||
color: #3572b0;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-tag {
|
||||
background-color: var(--background-primary);
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
font-size: 10px;
|
||||
margin-left: 5px;
|
||||
padding: 0 2px;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted-tag {
|
||||
border: 2px solid #c33;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-added-tag {
|
||||
border: 1px solid #399839;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-changed-tag {
|
||||
border: 1px solid #d0b44c;
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="diff-view"] .d2h-moved-tag {
|
||||
border: 1px solid #3572b0;
|
||||
}
|
||||
|
||||
/* ====================== Line Authoring Information ====================== */
|
||||
|
||||
.cm-gutterElement.obs-git-blame-gutter {
|
||||
/* Add background color to spacing inbetween and around the gutter for better aesthetics */
|
||||
border-width: 0px 2px 0.2px 2px;
|
||||
border-style: solid;
|
||||
border-color: var(--background-secondary);
|
||||
background-color: var(--background-secondary);
|
||||
}
|
||||
|
||||
.cm-gutterElement.obs-git-blame-gutter > div,
|
||||
.line-author-settings-preview {
|
||||
/* delegate text color to settings */
|
||||
color: var(--obs-git-gutter-text);
|
||||
font-family: monospace;
|
||||
height: 100%; /* ensure, that age-based background color occupies entire parent */
|
||||
text-align: right;
|
||||
padding: 0px 6px 0px 6px;
|
||||
white-space: pre; /* Keep spaces and do not collapse them. */
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"settings": {
|
||||
"migrated": 4,
|
||||
"iconPacksPath": ".obsidian/icons",
|
||||
"fontSize": 16,
|
||||
"emojiStyle": "native",
|
||||
"iconColor": null,
|
||||
"recentlyUsedIcons": [
|
||||
"🗒"
|
||||
],
|
||||
"recentlyUsedIconsSize": 5,
|
||||
"rules": [],
|
||||
"extraMargin": {
|
||||
"top": 0,
|
||||
"right": 4,
|
||||
"bottom": 0,
|
||||
"left": 0
|
||||
},
|
||||
"iconInTabsEnabled": true,
|
||||
"iconInTitleEnabled": true,
|
||||
"iconInFrontmatterEnabled": true,
|
||||
"iconsBackgroundCheckEnabled": true,
|
||||
"iconsInNotesEnabled": true,
|
||||
"iconIdentifier": ":"
|
||||
}
|
||||
}
|
||||
+5978
File diff suppressed because one or more lines are too long
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-icon-folder",
|
||||
"name": "Iconize",
|
||||
"version": "2.10.1",
|
||||
"minAppVersion": "0.9.12",
|
||||
"description": "Add icons to anything you desire in Obsidian, including files, folders, and text.",
|
||||
"author": "Florian Woelki",
|
||||
"authorUrl": "https://florianwoelki.com/",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
+110
@@ -0,0 +1,110 @@
|
||||
.iconize-title-icon {
|
||||
max-width: var(--max-width);
|
||||
width: var(--line-width);
|
||||
margin-inline: var(--content-margin) !important;
|
||||
}
|
||||
|
||||
.iconize-icon {
|
||||
border: 1px solid transparent;
|
||||
margin: 0px 4px 0px 0px;
|
||||
display: flex;
|
||||
align-self: center;
|
||||
margin: auto 0;
|
||||
}
|
||||
|
||||
.nav-folder-title,
|
||||
.nav-file-title {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.iconize-setting input[type='color'] {
|
||||
margin: 0 6px;
|
||||
}
|
||||
|
||||
.iconize-modal.prompt-results {
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(5, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.prompt .iconize-subheadline {
|
||||
margin-top: 12px;
|
||||
font-size: 12px;
|
||||
color: gray;
|
||||
grid-column-start: 1;
|
||||
grid-column-end: 6;
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.iconize-modal.prompt-results {
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
}
|
||||
.prompt .iconize-subheadline {
|
||||
grid-column-end: 4;
|
||||
}
|
||||
}
|
||||
|
||||
.iconize-modal.prompt-results .suggestion-item {
|
||||
cursor: pointer;
|
||||
white-space: pre-wrap;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
flex-direction: column-reverse;
|
||||
text-align: center;
|
||||
font-size: 13px;
|
||||
color: var(--text-muted);
|
||||
padding: 16px 8px;
|
||||
line-break: auto;
|
||||
word-break: break-word;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.iconize-modal.prompt-results
|
||||
.suggestion-item.suggestion-item__center {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.iconize-icon-preview {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.iconize-icon-preview img {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.iconize-icon-preview svg {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
color: currentColor;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.iconize-dragover {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.iconize-dragover-el {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
color: var(--text-normal);
|
||||
background-color: var(--background-secondary-alt);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
/* Custom rule modal. */
|
||||
.iconize-custom-modal .modal-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.iconize-custom-modal .modal-content input {
|
||||
width: 100%;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"show-checkboxes": true,
|
||||
"new-note-folder": "Kanban_boards",
|
||||
"date-picker-week-start": 1,
|
||||
"archive-with-date": true,
|
||||
"link-date-to-daily-note": true,
|
||||
"date-colors": []
|
||||
}
|
||||
+114
File diff suppressed because one or more lines are too long
+10
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-kanban",
|
||||
"name": "Kanban",
|
||||
"version": "1.5.3",
|
||||
"minAppVersion": "1.0.0",
|
||||
"description": "Create markdown-backed Kanban boards in Obsidian.",
|
||||
"author": "mgmeyers",
|
||||
"authorUrl": "https://github.com/mgmeyers/obsidian-kanban",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"devMode": false,
|
||||
"ignoreCodeBlockRestrictions": false,
|
||||
"preferredDateFormat": "YYYY-MM-DD",
|
||||
"useUsDateInputOrder": false,
|
||||
"firstWeekday": {
|
||||
"index": 1,
|
||||
"name": "Monday",
|
||||
"shortName": "Mo"
|
||||
},
|
||||
"syncInterval": 200,
|
||||
"minSyncInterval": 50,
|
||||
"maxSyncInterval": 1000,
|
||||
"enableJs": false,
|
||||
"viewFieldDisplayNullAsEmpty": false,
|
||||
"enableSyntaxHighlighting": true,
|
||||
"enableEditorRightClickMenu": true,
|
||||
"inputFieldTemplates": [],
|
||||
"buttonTemplates": [],
|
||||
"excludedFolders": [
|
||||
"templates"
|
||||
]
|
||||
}
|
||||
+144
File diff suppressed because one or more lines are too long
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "obsidian-meta-bind-plugin",
|
||||
"name": "Meta Bind",
|
||||
"version": "0.12.5",
|
||||
"minAppVersion": "1.4.0",
|
||||
"description": "Make your notes interactive with inline input fields, metadata displays, and buttons.",
|
||||
"author": "Moritz Jung",
|
||||
"authorUrl": "https://mprojectscode.github.io/",
|
||||
"helpUrl": "https://www.moritzjung.dev/obsidian-meta-bind-plugin-docs/",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
@@ -0,0 +1,556 @@
|
||||
body {
|
||||
--mb-border-width: var(--border-width);
|
||||
--mb-border-radius: var(--input-radius);
|
||||
--mb-slider-spacing: 5px;
|
||||
--mb-select-element-border-width: 5px;
|
||||
--mb-date-input-year-input-width: 80px;
|
||||
}
|
||||
|
||||
/* Input Wrappers */
|
||||
.mb-input {
|
||||
background-color: transparent !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
.mb-input-wrapper {
|
||||
display: inline;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.mb-input-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
|
||||
.mb-input-block {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
/* View Wrappers */
|
||||
/* For higher specificity */
|
||||
:is(code, span).mb-view:has(> div.mb-view-wrapper) {
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
color: inherit;
|
||||
font-size: inherit;
|
||||
font-family: inherit;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
div.mb-view-wrapper.mb-view-markdown > p {
|
||||
margin: 0;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
div.mb-view-wrapper {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.mb-button {
|
||||
background-color: transparent !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
.mb-button-inline {
|
||||
display: inline !important;
|
||||
}
|
||||
|
||||
.mb-button-block {
|
||||
}
|
||||
|
||||
.mb-button-group {
|
||||
background-color: transparent !important;
|
||||
border: none !important;
|
||||
|
||||
& > .mb-button {
|
||||
&:first-child:not(:last-child) {
|
||||
& > .mb-button-inner {
|
||||
border-radius: var(--mb-border-radius) 0 0 var(--mb-border-radius);
|
||||
}
|
||||
}
|
||||
|
||||
&:last-child:not(:first-child) {
|
||||
& > .mb-button-inner {
|
||||
border-radius: 0 var(--mb-border-radius) var(--mb-border-radius) 0;
|
||||
}
|
||||
}
|
||||
|
||||
&:last-child:first-child {
|
||||
& > .mb-button-inner {
|
||||
border-radius: var(--mb-border-radius);
|
||||
}
|
||||
}
|
||||
|
||||
& > .mb-button-inner {
|
||||
border-radius: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.mb-button-inner {
|
||||
}
|
||||
|
||||
/* Toggle Input */
|
||||
.mb-input-wrapper .checkbox-container {
|
||||
vertical-align: text-bottom;
|
||||
}
|
||||
|
||||
/* Slider Input */
|
||||
|
||||
.mb-input-wrapper:has(> .mb-slider-input) {
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
.mb-slider-input {
|
||||
align-self: center;
|
||||
margin-left: var(--mb-slider-spacing) !important;
|
||||
margin-right: var(--mb-slider-spacing) !important;
|
||||
}
|
||||
|
||||
.mb-slider-input-label {
|
||||
color: var(--text-muted);
|
||||
font-size: var(--font-ui-small);
|
||||
}
|
||||
|
||||
/* Text Input */
|
||||
.mb-content-limit-indicator {
|
||||
color: var(--text-muted);
|
||||
font-size: var(--font-ui-small);
|
||||
}
|
||||
|
||||
.mb-content-limit-indicator-overflow {
|
||||
color: var(--color-red);
|
||||
}
|
||||
|
||||
/* Select Input */
|
||||
.mb-select-input-element {
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
margin: 5px 0 5px 0;
|
||||
border-radius: var(--mb-border-radius);
|
||||
border-left: var(--mb-select-element-border-width) solid transparent;
|
||||
white-space: pre-wrap;
|
||||
font-size: 16px;
|
||||
min-width: 200px;
|
||||
}
|
||||
|
||||
.mb-select-input-element.is-selected {
|
||||
border-left: var(--mb-select-element-border-width) solid var(--interactive-accent);
|
||||
background: var(--background-secondary);
|
||||
}
|
||||
|
||||
.mb-select-input-element:hover {
|
||||
background: var(--background-secondary);
|
||||
}
|
||||
|
||||
/* Date Input */
|
||||
.mb-date-input-year-input[type='number'] {
|
||||
width: var(--mb-date-input-year-input-width);
|
||||
height: unset;
|
||||
align-self: stretch;
|
||||
}
|
||||
|
||||
/* Input Element Group */
|
||||
.mb-input-element-group {
|
||||
display: inline-flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.mb-input-element-group .mb-input-element-group-element:focus {
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.mb-input-element-group .mb-input-element-group-element:first-child {
|
||||
border-radius: var(--mb-border-radius) 0 0 var(--mb-border-radius);
|
||||
}
|
||||
|
||||
.mb-input-element-group .mb-input-element-group-element:not(:first-child):not(:last-child) {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.mb-input-element-group .mb-input-element-group-element:last-child {
|
||||
border-radius: 0 var(--mb-border-radius) var(--mb-border-radius) 0;
|
||||
}
|
||||
|
||||
/* SailKite small input fields so that line height is consistent */
|
||||
/* https://discord.com/channels/1171444840257572935/1171444840257572939/1171562547212726403 */
|
||||
/*.mb-input-element-group {*/
|
||||
/* & > .mb-date-input-year-input[type='number'] {*/
|
||||
/* padding-block: 0;*/
|
||||
/* }*/
|
||||
/* & > .mb-input-element-group-element {*/
|
||||
/* height: 100%;*/
|
||||
/* }*/
|
||||
/*}*/
|
||||
|
||||
/* List Input */
|
||||
.mb-list-input {
|
||||
display: flex;
|
||||
gap: var(--size-4-2);
|
||||
}
|
||||
|
||||
.mb-list-input > div:has(> input) {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.mb-list-empty {
|
||||
color: var(--text-faint);
|
||||
}
|
||||
|
||||
.mb-list-items {
|
||||
margin-bottom: var(--size-4-4);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--size-4-2);
|
||||
}
|
||||
|
||||
.mb-list-item {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.mb-list-item > span {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
/* Inline List */
|
||||
.mb-inline-list {
|
||||
display: inline;
|
||||
font-size: 0;
|
||||
|
||||
& > .mb-inline-list-item {
|
||||
border: var(--mb-border-width) solid var(--background-modifier-border);
|
||||
border-radius: var(--mb-border-radius);
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: var(--size-4-2);
|
||||
padding-inline: var(--size-4-2);
|
||||
padding-block: var(--size-4-1);
|
||||
font-size: var(--font-ui-small);
|
||||
|
||||
&:not(:last-child) {
|
||||
margin-right: var(--size-4-2);
|
||||
}
|
||||
|
||||
& > .mb-inline-list-item-button {
|
||||
border: none;
|
||||
background: none;
|
||||
padding: initial;
|
||||
height: unset;
|
||||
box-shadow: none;
|
||||
|
||||
&:hover {
|
||||
color: var(--text-error);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
& > .mb-inline-list-add {
|
||||
border: var(--mb-border-width) solid var(--background-modifier-border);
|
||||
border-radius: var(--mb-border-radius);
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
padding-inline: var(--size-4-2);
|
||||
padding-block: var(--size-4-1);
|
||||
font-size: var(--font-ui-small);
|
||||
|
||||
&:hover {
|
||||
color: var(--text-accent);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Suggester Input */
|
||||
.mb-suggest-input {
|
||||
background: var(--background-modifier-form-field);
|
||||
border-radius: var(--mb-border-radius);
|
||||
border: var(--mb-border-width) solid var(--background-modifier-border);
|
||||
padding: 5px 5px 5px 7px;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
color: var(--text-normal);
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.mb-suggest-text {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
/* Progress Bar Input */
|
||||
|
||||
.mb-progress-bar-input {
|
||||
height: 32px;
|
||||
width: 100%;
|
||||
border-radius: var(--mb-border-radius);
|
||||
border: var(--mb-border-width) solid var(--background-modifier-border);
|
||||
position: relative;
|
||||
cursor: col-resize;
|
||||
}
|
||||
|
||||
.mb-progress-bar-input:focus-visible {
|
||||
box-shadow: 0 0 0 3px var(--background-modifier-border-focus);
|
||||
}
|
||||
|
||||
.mb-progress-bar-progress {
|
||||
height: 32px;
|
||||
background: var(--color-accent);
|
||||
border-radius: var(--mb-border-radius);
|
||||
}
|
||||
|
||||
.mb-progress-bar-value {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.mb-progress-bar-label-left {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translate(0, -50%);
|
||||
left: var(--size-4-2);
|
||||
}
|
||||
|
||||
.mb-progress-bar-label-right {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translate(0, -50%);
|
||||
right: var(--size-4-2);
|
||||
}
|
||||
|
||||
/* Card */
|
||||
.mb-card {
|
||||
padding: var(--size-4-2);
|
||||
margin: var(--size-4-2) 0;
|
||||
border-radius: var(--mb-border-radius);
|
||||
border: var(--mb-border-width) solid var(--background-modifier-border);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
gap: var(--size-4-2);
|
||||
}
|
||||
|
||||
[class*='block-language-'] > .mb-card {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.mb-card > :first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.mb-card > :last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.mb-card > code {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.mb-card > pre {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.mb-card > h3 {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.mb-card.mb-card-full-width {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Image */
|
||||
.mb-image-search-container {
|
||||
margin-bottom: var(--size-4-4);
|
||||
}
|
||||
|
||||
.mb-image-card-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
|
||||
gap: var(--size-4-4);
|
||||
}
|
||||
|
||||
/* Error */
|
||||
.mb-error {
|
||||
color: var(--text-error) !important;
|
||||
font-weight: bold;
|
||||
font-family: var(--font-monospace);
|
||||
}
|
||||
|
||||
code.mb-error {
|
||||
color: var(--text-error) !important;
|
||||
}
|
||||
|
||||
.mb-warning {
|
||||
color: var(--text-warning) !important;
|
||||
font-weight: bold;
|
||||
font-family: var(--font-monospace);
|
||||
}
|
||||
|
||||
code.mb-warning {
|
||||
color: var(--text-warning) !important;
|
||||
}
|
||||
|
||||
/* Code */
|
||||
.mb-code {
|
||||
color: var(--text-normal);
|
||||
font-family: var(--font-monospace);
|
||||
}
|
||||
|
||||
/* Error Collection */
|
||||
.mb-error-collection-card {
|
||||
padding: var(--size-4-2);
|
||||
margin: var(--size-4-2) 0;
|
||||
border-radius: var(--mb-border-radius);
|
||||
border: var(--mb-border-width) solid var(--background-modifier-border);
|
||||
color: var(--text-normal);
|
||||
font-family: var(--font-default);
|
||||
}
|
||||
|
||||
.mb-error-collection {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
margin-inline: var(--size-4-2);
|
||||
}
|
||||
|
||||
.publish-renderer .mb-error-collection {
|
||||
margin-inline: 0;
|
||||
}
|
||||
|
||||
.mb-error-collection > svg {
|
||||
width: var(--font-text-size);
|
||||
height: var(--font-text-size);
|
||||
vertical-align: text-bottom;
|
||||
}
|
||||
|
||||
.mb-error-collection > svg.lucide-alert-circle {
|
||||
color: var(--text-error);
|
||||
}
|
||||
|
||||
.mb-error-collection > svg.lucide-alert-triangle {
|
||||
color: var(--text-warning);
|
||||
}
|
||||
|
||||
.mb-error-collection > svg.lucide-info {
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.mb-pre {
|
||||
overflow-x: scroll;
|
||||
}
|
||||
|
||||
.mb-pre > code {
|
||||
white-space: pre;
|
||||
}
|
||||
|
||||
.mb-error-collection-modal {
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.mb-error-text {
|
||||
color: var(--text-error) !important;
|
||||
}
|
||||
|
||||
.mb-warning-text {
|
||||
color: var(--text-warning) !important;
|
||||
}
|
||||
|
||||
/* --- Misc --- */
|
||||
|
||||
.mb-icon-wrapper {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
|
||||
.mb-icon-wrapper > svg {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.mb-faq-view {
|
||||
max-width: var(--file-line-width);
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
a.mb-no-link {
|
||||
color: var(--code-normal);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
table.mb-html-table {
|
||||
}
|
||||
|
||||
td.mb-html-table-button-cell {
|
||||
--table-column-min-width: 10px;
|
||||
}
|
||||
|
||||
th.mb-html-table-button-cell {
|
||||
--table-column-min-width: 10px;
|
||||
}
|
||||
|
||||
.mb-table-wrapper {
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.mb-flex-row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: var(--size-4-2);
|
||||
}
|
||||
|
||||
.mb-flex-row > :first-child {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
/* --- HIGHLIGHTING CLASSES --- */
|
||||
.mb-highlight-test {
|
||||
color: #00bfbc;
|
||||
}
|
||||
|
||||
.mb-highlight-ident,
|
||||
.cm-mb-highlight-ident {
|
||||
color: var(--code-normal);
|
||||
}
|
||||
|
||||
.mb-highlight-control,
|
||||
.cm-mb-highlight-control {
|
||||
color: var(--code-keyword);
|
||||
}
|
||||
|
||||
.mb-highlight-string,
|
||||
.cm-mb-highlight-string {
|
||||
color: var(--code-string);
|
||||
}
|
||||
|
||||
.mb-highlight-keyword,
|
||||
.cm-mb-highlight-keyword {
|
||||
color: var(--code-property);
|
||||
}
|
||||
|
||||
.mb-highlight-error,
|
||||
.cm-mb-highlight-error {
|
||||
color: var(--text-error);
|
||||
}
|
||||
|
||||
/* --- UTIL CLASSES --- */
|
||||
|
||||
.meta-bind-full-width > * {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.meta-bind-high > * {
|
||||
height: 200px;
|
||||
}
|
||||
|
||||
.meta-bind-small-width > * {
|
||||
width: 80px;
|
||||
}
|
||||
+10219
File diff suppressed because it is too large
Load Diff
+10
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-pandoc",
|
||||
"name": "Pandoc Plugin",
|
||||
"version": "0.4.1",
|
||||
"minAppVersion": "0.12.5",
|
||||
"description": "This is a Pandoc export plugin for Obsidian. It provides commands to export to formats like DOCX, ePub and PDF.",
|
||||
"author": "Oliver Balfour",
|
||||
"authorUrl": "https://github.com/OliverBalfour/obsidian-pandoc",
|
||||
"isDesktopOnly": true
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
|
||||
.pandoc-plugin-error {
|
||||
color: red;
|
||||
}
|
||||
@@ -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": true,
|
||||
"filenameAsDateFolders": [],
|
||||
"recurrenceOnNextLine": true,
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
+351
File diff suppressed because one or more lines are too long
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"id": "obsidian-tasks-plugin",
|
||||
"name": "Tasks",
|
||||
"version": "6.2.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
|
||||
}
|
||||
+464
@@ -0,0 +1,464 @@
|
||||
: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);
|
||||
user-select: none;
|
||||
-webkit-user-select: none;
|
||||
-webkit-touch-callout: none;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
.task-list-item-checkbox {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* 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: 8px;
|
||||
}
|
||||
|
||||
.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 hr {
|
||||
margin: 0.35rem 0;
|
||||
padding-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.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 > .results {
|
||||
grid-column: 2;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.tasks-modal-dates > .results {
|
||||
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 > .results {
|
||||
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;
|
||||
}
|
||||
}
|
||||
/* Dependency Styles */
|
||||
|
||||
.task-dependencies-container {
|
||||
padding-bottom: 4px;
|
||||
padding-top: 4px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 8px;
|
||||
}
|
||||
.task-dependency {
|
||||
display: inline-flex;
|
||||
background-color: var(--interactive-normal);
|
||||
box-shadow: var(--input-shadow);
|
||||
border-radius: 28px;
|
||||
padding: 6px 8px 6px 12px;
|
||||
}
|
||||
|
||||
.task-dependency-name {
|
||||
font-size: 14px;
|
||||
max-width: 160px;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.task-dependency-delete {
|
||||
padding: 3px;
|
||||
border-radius: 50%;
|
||||
margin-left: 6px;
|
||||
cursor: pointer;
|
||||
height: inherit;
|
||||
box-shadow: none !important;
|
||||
background-color: var(--background-primary) !important;
|
||||
}
|
||||
|
||||
.task-dependency-dropdown {
|
||||
list-style: none;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
padding: 4px;
|
||||
margin: 0;
|
||||
background-color: var(--background-primary);
|
||||
border: 1px;
|
||||
border-radius: 6px;
|
||||
border-color: var(--background-modifier-border);
|
||||
border-style: solid;
|
||||
z-index: 99;
|
||||
max-height: 170px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.task-dependency-dropdown li {
|
||||
padding: 5px;
|
||||
margin: 2px;
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
justify-content: space-between
|
||||
}
|
||||
.task-dependency-dropdown li .dependency-name {
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.task-dependency-dropdown li .dependency-name-shared {
|
||||
width: calc(60%);
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.task-dependency-dropdown li .dependency-path {
|
||||
width: calc(40%);
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
font-style: italic;
|
||||
text-align: right;
|
||||
color: var(--italic-color)
|
||||
}
|
||||
|
||||
.task-dependency-dropdown li.selected {
|
||||
background-color: var(--text-selection);
|
||||
}
|
||||
|
||||
/**------------------------------------------------------------------------
|
||||
** 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;
|
||||
}
|
||||
Vendored
+99
@@ -0,0 +1,99 @@
|
||||
{
|
||||
"choices": [
|
||||
{
|
||||
"id": "fc32e7cf-3883-430f-aebf-9b6673b9633b",
|
||||
"name": "Participantes",
|
||||
"type": "Template",
|
||||
"command": false,
|
||||
"templatePath": "6.Templates/Participantes.md",
|
||||
"fileNameFormat": {
|
||||
"enabled": false,
|
||||
"format": ""
|
||||
},
|
||||
"folder": {
|
||||
"enabled": true,
|
||||
"folders": [
|
||||
"7.Participantes"
|
||||
],
|
||||
"chooseWhenCreatingNote": false,
|
||||
"createInSameFolderAsActiveFile": false,
|
||||
"chooseFromSubfolders": false
|
||||
},
|
||||
"appendLink": false,
|
||||
"openFileInNewTab": {
|
||||
"enabled": false,
|
||||
"direction": "vertical",
|
||||
"focus": true
|
||||
},
|
||||
"openFile": true,
|
||||
"openFileInMode": "default",
|
||||
"fileExistsMode": "Increment the file name",
|
||||
"setFileExistsBehavior": false
|
||||
}
|
||||
],
|
||||
"macros": [
|
||||
{
|
||||
"name": "Participantes",
|
||||
"id": "0959994d-f320-4fa6-b81c-8eace9821285",
|
||||
"commands": [],
|
||||
"runOnStartup": false
|
||||
}
|
||||
],
|
||||
"inputPrompt": "single-line",
|
||||
"devMode": false,
|
||||
"templateFolderPath": "6.Templates",
|
||||
"announceUpdates": true,
|
||||
"version": "1.8.1",
|
||||
"disableOnlineFeatures": true,
|
||||
"ai": {
|
||||
"defaultModel": "Ask me",
|
||||
"defaultSystemPrompt": "As an AI assistant within Obsidian, your primary goal is to help users manage their ideas and knowledge more effectively. Format your responses using Markdown syntax. Please use the [[Obsidian]] link format. You can write aliases for the links by writing [[Obsidian|the alias after the pipe symbol]]. To use mathematical notation, use LaTeX syntax. LaTeX syntax for larger equations should be on separate lines, surrounded with double dollar signs ($$). You can also inline math expressions by wrapping it in $ symbols. For example, use $$w_{ij}^{\text{new}}:=w_{ij}^{\text{current}}+etacdotdelta_jcdot x_{ij}$$ on a separate line, but you can write \"($eta$ = learning rate, $delta_j$ = error term, $x_{ij}$ = input)\" inline.",
|
||||
"promptTemplatesFolderPath": "",
|
||||
"showAssistant": true,
|
||||
"providers": [
|
||||
{
|
||||
"name": "OpenAI",
|
||||
"endpoint": "https://api.openai.com/v1",
|
||||
"apiKey": "",
|
||||
"models": [
|
||||
{
|
||||
"name": "gpt-3.5-turbo",
|
||||
"maxTokens": 4096
|
||||
},
|
||||
{
|
||||
"name": "gpt-3.5-turbo-16k",
|
||||
"maxTokens": 16384
|
||||
},
|
||||
{
|
||||
"name": "gpt-3.5-turbo-1106",
|
||||
"maxTokens": 16385
|
||||
},
|
||||
{
|
||||
"name": "gpt-4",
|
||||
"maxTokens": 8192
|
||||
},
|
||||
{
|
||||
"name": "gpt-4-32k",
|
||||
"maxTokens": 32768
|
||||
},
|
||||
{
|
||||
"name": "gpt-4-1106-preview",
|
||||
"maxTokens": 128000
|
||||
},
|
||||
{
|
||||
"name": "text-davinci-003",
|
||||
"maxTokens": 4096
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"migrations": {
|
||||
"migrateToMacroIDFromEmbeddedMacro": true,
|
||||
"useQuickAddTemplateFolder": true,
|
||||
"incrementFileNameSettingMoveToDefaultBehavior": true,
|
||||
"mutualExclusionInsertAfterAndWriteToBottomOfFile": true,
|
||||
"setVersionAfterUpdateModalRelease": true,
|
||||
"addDefaultAIProviders": true
|
||||
}
|
||||
}
|
||||
Vendored
+20023
File diff suppressed because one or more lines are too long
+12
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"id": "quickadd",
|
||||
"name": "QuickAdd",
|
||||
"version": "1.8.1",
|
||||
"minAppVersion": "0.13.19",
|
||||
"description": "Quickly add new pages or content to your vault.",
|
||||
"author": "Christian B. B. Houmann",
|
||||
"authorUrl": "https://bagerbach.com",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/chhoumann",
|
||||
"helpUrl": "https://quickadd.obsidian.guide/docs/",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
+238
@@ -0,0 +1,238 @@
|
||||
/* src/styles.css */
|
||||
.configureMacroDiv {
|
||||
display: grid;
|
||||
grid-template-rows: 1fr;
|
||||
min-width: 12rem;
|
||||
}
|
||||
.configureMacroDivItem {
|
||||
display: flex;
|
||||
align-content: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.configureMacroDivItemButton {
|
||||
display: flex;
|
||||
align-content: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.macroContainer {
|
||||
display: grid;
|
||||
grid-template-rows: repeat(auto-fill, 120px);
|
||||
grid-gap: 40px;
|
||||
overflow-y: auto;
|
||||
max-height: 30em;
|
||||
padding: 2em;
|
||||
}
|
||||
@media screen and (max-width: 540px) {
|
||||
.macroContainer1 {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
}
|
||||
.macroContainer2 {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
}
|
||||
.macroContainer3 {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
}
|
||||
.wideInputPromptInputEl {
|
||||
width: 20rem;
|
||||
max-width: 100%;
|
||||
height: 3rem;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 540px) and (max-width: 780px) {
|
||||
.macroContainer1 {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
}
|
||||
.macroContainer2 {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
.macroContainer3 {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
.wideInputPromptInputEl {
|
||||
width: 30rem;
|
||||
max-width: 100%;
|
||||
height: 20rem;
|
||||
}
|
||||
}
|
||||
@media screen and (min-width: 781px) {
|
||||
.macroContainer1 {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
}
|
||||
.macroContainer2 {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
.macroContainer3 {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
.wideInputPromptInputEl {
|
||||
width: 40rem;
|
||||
max-width: 100%;
|
||||
height: 20rem;
|
||||
}
|
||||
}
|
||||
.addMacroBarContainer {
|
||||
display: flex;
|
||||
align-content: center;
|
||||
justify-content: space-around;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.captureToActiveFileContainer {
|
||||
display: flex;
|
||||
align-content: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.choiceNameHeader {
|
||||
text-align: center;
|
||||
}
|
||||
.choiceNameHeader:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
.folderInputContainer {
|
||||
display: flex;
|
||||
align-content: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 8px;
|
||||
gap: 4px;
|
||||
}
|
||||
.selectMacroDropdownContainer {
|
||||
display: flex;
|
||||
align-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.quickAddModal .modal {
|
||||
min-width: 35%;
|
||||
overflow-y: auto;
|
||||
max-height: 70%;
|
||||
}
|
||||
.checkboxRowContainer {
|
||||
margin: 30px 0px;
|
||||
display: grid;
|
||||
grid-template-rows: auto;
|
||||
align-content: center;
|
||||
gap: 5px;
|
||||
}
|
||||
.checkboxRow {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-content: center;
|
||||
}
|
||||
.checkboxRow .checkbox-container {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.checkboxRow span {
|
||||
font-size: 16px;
|
||||
word-break: break-all;
|
||||
}
|
||||
.submitButtonContainer {
|
||||
display: flex;
|
||||
align-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.chooseFolderWhenCreatingNoteContainer {
|
||||
display: flex;
|
||||
align-content: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.chooseFolderFromSubfolderContainer {
|
||||
margin: 20px 0 0 0;
|
||||
}
|
||||
.clickable:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
.quickAddCommandListItem {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.quickCommandContainer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-content: center;
|
||||
margin-bottom: 1em;
|
||||
gap: 4px;
|
||||
}
|
||||
.yesNoPromptButtonContainer {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-around;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
.yesNoPromptParagraph {
|
||||
text-align: center;
|
||||
}
|
||||
.qaFileSuggestionItem {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
}
|
||||
.qaFileSuggestionItem .suggestion-main-text {
|
||||
font-weight: bold;
|
||||
}
|
||||
.qaFileSuggestionItem .suggestion-sub-text {
|
||||
font-style: italic;
|
||||
}
|
||||
.choiceListItem {
|
||||
display: flex;
|
||||
font-size: 16px;
|
||||
align-items: center;
|
||||
margin: 12px 0 0 0;
|
||||
transition: 1000ms ease-in-out;
|
||||
}
|
||||
.choiceListItemName {
|
||||
flex: 1 0 0;
|
||||
}
|
||||
.choiceListItemName p {
|
||||
margin: 0;
|
||||
display: inline;
|
||||
}
|
||||
.quickadd-choice-suggestion p {
|
||||
margin: 0;
|
||||
}
|
||||
.macroDropdownContainer {
|
||||
display: flex;
|
||||
align-content: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 10px;
|
||||
gap: 10px;
|
||||
}
|
||||
.macro-choice-buttonsContainer {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
@media only screen and (max-width: 600px) {
|
||||
.macroDropdownContainer {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.macroDropdownContainer .macro-choice-buttonsContainer {
|
||||
gap: 20px;
|
||||
}
|
||||
}
|
||||
.quickadd-update-modal-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.quickadd-update-modal {
|
||||
min-width: 35%;
|
||||
max-height: 70%;
|
||||
}
|
||||
.quickadd-update-modal img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
margin: 5px;
|
||||
}
|
||||
.quickadd-bmac-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
+41
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"command_timeout": 5,
|
||||
"templates_folder": "6.Templates",
|
||||
"templates_pairs": [
|
||||
[
|
||||
"",
|
||||
""
|
||||
]
|
||||
],
|
||||
"trigger_on_file_creation": true,
|
||||
"auto_jump_to_cursor": true,
|
||||
"enable_system_commands": false,
|
||||
"shell_path": "",
|
||||
"user_scripts_folder": "",
|
||||
"enable_folder_templates": true,
|
||||
"folder_templates": [
|
||||
{
|
||||
"folder": "1.Daily_Notes",
|
||||
"template": "6.Templates/Daily.md"
|
||||
},
|
||||
{
|
||||
"folder": "7.Participantes",
|
||||
"template": "6.Templates/Participantes.md"
|
||||
},
|
||||
{
|
||||
"folder": "2.Notas_Reunión",
|
||||
"template": "6.Templates/Meetings.md"
|
||||
},
|
||||
{
|
||||
"folder": "1.Daily_Notes/2024/{{date:MM-MMMM}}",
|
||||
"template": "6.Templates/Notas.md"
|
||||
}
|
||||
],
|
||||
"syntax_highlighting": true,
|
||||
"syntax_highlighting_mobile": false,
|
||||
"enabled_templates_hotkeys": [
|
||||
""
|
||||
],
|
||||
"startup_templates": [],
|
||||
"enable_ribbon_icon": true
|
||||
}
|
||||
+5635
File diff suppressed because one or more lines are too long
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "templater-obsidian",
|
||||
"name": "Templater",
|
||||
"version": "2.2.3",
|
||||
"description": "Create and use templates",
|
||||
"minAppVersion": "1.5.0",
|
||||
"author": "SilentVoid",
|
||||
"authorUrl": "https://github.com/SilentVoid13",
|
||||
"helpUrl": "https://silentvoid13.github.io/Templater/",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
+220
@@ -0,0 +1,220 @@
|
||||
.templater_search {
|
||||
width: calc(100% - 20px);
|
||||
}
|
||||
|
||||
.templater_div {
|
||||
border-top: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.templater_div > .setting-item {
|
||||
border-top: none !important;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.templater_div > .setting-item > .setting-item-control {
|
||||
justify-content: space-around;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.templater_div
|
||||
> .setting-item
|
||||
> .setting-item-control
|
||||
> .setting-editor-extra-setting-button {
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.templater_donating {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.templater_title {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
margin-top: 5px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.templater_template {
|
||||
align-self: center;
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
.templater_cmd {
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
font-size: 14px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.templater_div2 > .setting-item {
|
||||
align-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.templater-prompt-div {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.templater-prompt-form {
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.templater-prompt-input {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.templater-button-div {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
textarea.templater-prompt-input {
|
||||
height: 10rem;
|
||||
}
|
||||
|
||||
textarea.templater-prompt-input:focus {
|
||||
border-color: var(--interactive-accent);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .templater-command-bg {
|
||||
left: 0px;
|
||||
right: 0px;
|
||||
background-color: var(--background-primary-alt);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command {
|
||||
font-size: 0.85em;
|
||||
font-family: var(--font-monospace);
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.cm-s-obsidian .templater-inline .cm-templater-command {
|
||||
background-color: var(--background-primary-alt);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-templater-opening-tag {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-templater-closing-tag {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-templater-interpolation-tag {
|
||||
color: var(--code-property, #008bff);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-templater-execution-tag {
|
||||
color: var(--code-function, #c0d700);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-keyword {
|
||||
color: var(--code-keyword, #00a7aa);
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-atom {
|
||||
color: var(--code-normal, #f39b35);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-value,
|
||||
.cm-s-obsidian .cm-templater-command.cm-number,
|
||||
.cm-s-obsidian .cm-templater-command.cm-type {
|
||||
color: var(--code-value, #a06fca);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-def,
|
||||
.cm-s-obsidian .cm-templater-command.cm-type.cm-def {
|
||||
color: var(--code-normal, var(--text-normal));
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-property,
|
||||
.cm-s-obsidian .cm-templater-command.cm-property.cm-def,
|
||||
.cm-s-obsidian .cm-templater-command.cm-attribute {
|
||||
color: var(--code-function, #98e342);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-variable,
|
||||
.cm-s-obsidian .cm-templater-command.cm-variable-2,
|
||||
.cm-s-obsidian .cm-templater-command.cm-variable-3,
|
||||
.cm-s-obsidian .cm-templater-command.cm-meta {
|
||||
color: var(--code-property, #d4d4d4);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-callee,
|
||||
.cm-s-obsidian .cm-templater-command.cm-operator,
|
||||
.cm-s-obsidian .cm-templater-command.cm-qualifier,
|
||||
.cm-s-obsidian .cm-templater-command.cm-builtin {
|
||||
color: var(--code-operator, #fc4384);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-tag {
|
||||
color: var(--code-tag, #fc4384);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-comment,
|
||||
.cm-s-obsidian .cm-templater-command.cm-comment.cm-tag,
|
||||
.cm-s-obsidian .cm-templater-command.cm-comment.cm-attribute {
|
||||
color: var(--code-comment, #696d70);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-string,
|
||||
.cm-s-obsidian .cm-templater-command.cm-string-2 {
|
||||
color: var(--code-string, #e6db74);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-header,
|
||||
.cm-s-obsidian .cm-templater-command.cm-hr {
|
||||
color: var(--code-keyword, #da7dae);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-link {
|
||||
color: var(--code-normal, #696d70);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-error {
|
||||
border-bottom: 1px solid #c42412;
|
||||
}
|
||||
|
||||
.CodeMirror-hints {
|
||||
position: absolute;
|
||||
z-index: 10;
|
||||
overflow: hidden;
|
||||
list-style: none;
|
||||
|
||||
margin: 0;
|
||||
padding: 2px;
|
||||
|
||||
-webkit-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
|
||||
-moz-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
|
||||
box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
|
||||
border-radius: 3px;
|
||||
border: 1px solid silver;
|
||||
|
||||
background: white;
|
||||
font-size: 90%;
|
||||
font-family: monospace;
|
||||
|
||||
max-height: 20em;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.CodeMirror-hint {
|
||||
margin: 0;
|
||||
padding: 0 4px;
|
||||
border-radius: 2px;
|
||||
white-space: pre;
|
||||
color: black;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
li.CodeMirror-hint-active {
|
||||
background: #08f;
|
||||
color: white;
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"fadeToggle": true,
|
||||
"autoRefreshToggle": true,
|
||||
"autoRefreshInterval": 900,
|
||||
"renderDescription": true,
|
||||
"renderDate": true,
|
||||
"renderDateIcon": true,
|
||||
"renderProject": true,
|
||||
"renderProjectIcon": true,
|
||||
"renderLabels": true,
|
||||
"renderLabelsIcon": true,
|
||||
"shouldWrapLinksInParens": false,
|
||||
"debugLogging": false
|
||||
}
|
||||
+23917
File diff suppressed because one or more lines are too long
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "todoist-sync-plugin",
|
||||
"name": "Todoist Sync",
|
||||
"version": "1.12.0",
|
||||
"minAppVersion": "1.0.0",
|
||||
"description": "Materialize Todoist tasks within Obsidian notes.",
|
||||
"author": "Jamie Brynes",
|
||||
"authorUrl": "https://github.com/jamiebrynes7/obsidian-todoist-plugin",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
+161
@@ -0,0 +1,161 @@
|
||||
.todoist-query-title {
|
||||
display: inline;
|
||||
font-size: 1.25em;
|
||||
}
|
||||
|
||||
.is-live-preview .todoist-refresh-button {
|
||||
/* The refresh button sits next to the built-in 'Edit' button. So we need to place this excatly to the right of that one. But with --size-2-2 as buffer to it. */
|
||||
margin-right: calc(var(--icon-size) + 3 * var(--size-2-2));
|
||||
}
|
||||
|
||||
.is-live-preview .todoist-add-button {
|
||||
/* The add button is two buttons in, so we need to double the padding size */
|
||||
margin-right: calc(2 * var(--icon-size) + 6 * var(--size-2-2));
|
||||
}
|
||||
|
||||
.markdown-reading-view .todoist-add-button,
|
||||
.markdown-reading-view .todoist-refresh-button {
|
||||
float: right;
|
||||
margin-left: 8px;
|
||||
color: var(--text-muted);
|
||||
border-radius: var(--radius-s);
|
||||
padding: var(--size-2-2) var(--size-2-3);
|
||||
}
|
||||
|
||||
.markdown-reading-view .todoist-add-button:hover,
|
||||
.markdown-reading-view .todoist-refresh-button:hover {
|
||||
background-color: var(--background-modifier-hover);
|
||||
}
|
||||
|
||||
.is-live-preview .todoist-refresh-button.todoist-refresh-fetching {
|
||||
opacity: 1!important;
|
||||
}
|
||||
|
||||
.todoist-refresh-fetching > div {
|
||||
animation: spin 1s linear infinite reverse;
|
||||
}
|
||||
|
||||
@-webkit-keyframes spin {
|
||||
100% {
|
||||
-webkit-transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
.markdown-reading-view .task-metadata,
|
||||
.markdown-reading-view .todoist-task-description {
|
||||
margin-left: 6px;
|
||||
}
|
||||
|
||||
.is-live-preview .task-metadata,
|
||||
.is-live-preview .todoist-task-description {
|
||||
margin-left: 34px;
|
||||
}
|
||||
|
||||
.task-metadata-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.task-metadata-item > * + * {
|
||||
margin-left: 0.25rem;
|
||||
}
|
||||
|
||||
.task-metadata-item.task-overdue {
|
||||
color: var(--text-error);
|
||||
}
|
||||
|
||||
.todoist-project {
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.todoist-project .todoist-project {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.todoist-project .todoist-section {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.todoist-error {
|
||||
background-color: rgb(var(--background-modifier-error-rgb), 0.5);
|
||||
border: 1px solid var(--background-modifier-error);
|
||||
padding: 0 10px 20px 10px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.todoist-success {
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
padding: 0 10px 20px 10px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.todoist-task-content {
|
||||
display: inline;
|
||||
text-indent: 0px;
|
||||
}
|
||||
|
||||
ul.todoist-task-list {
|
||||
white-space: normal;
|
||||
padding-inline-start: calc(var(--list-indent) - 11px);
|
||||
}
|
||||
|
||||
.markdown-reading-view .hide-in-reading-view {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.theme-dark {
|
||||
--todoist-p1-border: #ff7066;
|
||||
--todoist-p1-border-hover: #ff706680;
|
||||
--todoist-p1-background: rgba(255,112,102, .1);
|
||||
|
||||
--todoist-p2-border: #ff9a14;
|
||||
--todoist-p2-border-hover: #ff9a1480;
|
||||
--todoist-p2-background: rgba(255,154,20, .1);
|
||||
|
||||
--todoist-p3-border: #5297ff;
|
||||
--todoist-p3-border-hover: #5297ff80;
|
||||
--todoist-p3-background: rgba(82,151,255, .1);
|
||||
}
|
||||
|
||||
.theme-light {
|
||||
--todoist-p1-border: #d1453b;
|
||||
--todoist-p1-border-hover: #d1453b80;
|
||||
--todoist-p1-background: rgba(209,69,59, .1);
|
||||
|
||||
--todoist-p2-border: #eb8909;
|
||||
--todoist-p2-border-hover: #eb890980;
|
||||
--todoist-p2-background: rgba(235,137,9, .1);
|
||||
|
||||
--todoist-p3-border: #246fe0;
|
||||
--todoist-p3-border-hover: #246fe080;
|
||||
--todoist-p3-background: rgba(36,111,224, .1);
|
||||
}
|
||||
|
||||
.todoist-p1 input {
|
||||
--checkbox-border-color: var(--todoist-p1-border);
|
||||
--checkbox-border-color-hover: var(--todoist-p1-border-hover);
|
||||
background-color: var(--todoist-p1-background);
|
||||
|
||||
}
|
||||
|
||||
.todoist-p2 input {
|
||||
--checkbox-border-color: var(--todoist-p2-border);
|
||||
--checkbox-border-color-hover: var(--todoist-p2-border-hover);
|
||||
background-color: var(--todoist-p2-background);
|
||||
}
|
||||
|
||||
.todoist-p3 input {
|
||||
--checkbox-border-color: var(--todoist-p3-border);
|
||||
--checkbox-border-color-hover: var(--todoist-p3-border-hover);
|
||||
background-color: var(--todoist-p3-background);
|
||||
}
|
||||
|
||||
.todoist-task-description {
|
||||
font-size: 80%;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.todoist-project-title {
|
||||
margin: 1em 0;
|
||||
font-weight: 700;
|
||||
}
|
||||
+7335
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user