parent
80bff8226a
commit
5d2041bfe1
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"id":"cooklang-obsidian","name":"CookLang Editor","author":"death_au","authorUrl":"https://github.com/deathau","description":"Edit and display CookLang recipes in Obsidian","isDesktopOnly":false,"version":"0.2.0","minAppVersion":"0.10.12"}
|
@ -0,0 +1,68 @@
|
|||||||
|
.workspace-leaf-content[data-type=cook] .view-content {
|
||||||
|
font-family: inherit;
|
||||||
|
}
|
||||||
|
.workspace-leaf-content[data-type=cook] .cook-preview-view,
|
||||||
|
.workspace-leaf-content[data-type=cook] .cook-source-view {
|
||||||
|
max-width: 700px;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
.workspace-leaf-content[data-type=cook] .main-image {
|
||||||
|
width: 100vw;
|
||||||
|
aspect-ratio: 1.618;
|
||||||
|
object-fit: cover;
|
||||||
|
}
|
||||||
|
.workspace-leaf-content[data-type=cook] .method-image {
|
||||||
|
display: block;
|
||||||
|
margin-top: 1em;
|
||||||
|
max-width: 100%;
|
||||||
|
max-height: 16vw;
|
||||||
|
}
|
||||||
|
.workspace-leaf-content[data-type=cook] ul.ingredients,
|
||||||
|
.workspace-leaf-content[data-type=cook] ul.cookware {
|
||||||
|
column-count: 2;
|
||||||
|
}
|
||||||
|
.workspace-leaf-content[data-type=cook] ol.method {
|
||||||
|
margin-left: 0;
|
||||||
|
padding-right: 0;
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.workspace-leaf-content[data-type=cook] ol.method > li {
|
||||||
|
counter-increment: step-counter;
|
||||||
|
}
|
||||||
|
.workspace-leaf-content[data-type=cook] ol.method > li::before {
|
||||||
|
content: "Step " counter(step-counter);
|
||||||
|
font-weight: 600;
|
||||||
|
display: block;
|
||||||
|
font-size: 1.17em;
|
||||||
|
margin-block-start: 1em;
|
||||||
|
margin-block-end: 1em;
|
||||||
|
margin-inline-start: 0px;
|
||||||
|
margin-inline-end: 0px;
|
||||||
|
}
|
||||||
|
.workspace-leaf-content[data-type=cook] span.time,
|
||||||
|
.workspace-leaf-content[data-type=cook] span.ingredient,
|
||||||
|
.workspace-leaf-content[data-type=cook] span.cookware {
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.workspace-leaf-content[data-type=cook] .cm-ingredient,
|
||||||
|
.workspace-leaf-content[data-type=cook] .cm-cookware {
|
||||||
|
color: var(--text-accent);
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.workspace-leaf-content[data-type=cook] .cm-formatting {
|
||||||
|
color: var(--text-faint);
|
||||||
|
}
|
||||||
|
.workspace-leaf-content[data-type=cook] .cm-measurement,
|
||||||
|
.workspace-leaf-content[data-type=cook] .cm-timer,
|
||||||
|
.workspace-leaf-content[data-type=cook] .cm-unit {
|
||||||
|
color: var(--text-muted);
|
||||||
|
}
|
||||||
|
.workspace-leaf-content[data-type=cook] .cm-metadata,
|
||||||
|
.workspace-leaf-content[data-type=cook] .cm-metadata-key {
|
||||||
|
font-family: var(--font-monospace);
|
||||||
|
}
|
||||||
|
.workspace-leaf-content[data-type=cook] .cm-metadata-key {
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"calendars": [],
|
||||||
|
"currentCalendar": null,
|
||||||
|
"defaultCalendar": null,
|
||||||
|
"eventPreview": false,
|
||||||
|
"configDirectory": null,
|
||||||
|
"path": "/"
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"id": "fantasy-calendar",
|
||||||
|
"name": "Fantasy Calendar",
|
||||||
|
"version": "1.9.0",
|
||||||
|
"minAppVersion": "0.12.10",
|
||||||
|
"author": "Jeremy Valentine",
|
||||||
|
"description": "Fantasy calendars in Obsidian!",
|
||||||
|
"authorUrl": "https://github.com/valentine195/obsidian-fantasy-calendar",
|
||||||
|
"isDesktopOnly": false
|
||||||
|
}
|
@ -0,0 +1,211 @@
|
|||||||
|
.fantasy-calendar-confirm-buttons {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-settings .fantasy-calendars {
|
||||||
|
border-bottom: 1px solid var(--background-modifier-border);
|
||||||
|
border-top: 1px solid var(--background-modifier-border);
|
||||||
|
padding: 18px 0 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-create-calendar input[disabled] {
|
||||||
|
cursor: not-allowed;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-settings .fantasy-calendars .existing-calendars > span {
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 18px;
|
||||||
|
color: var(--text-muted);
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-settings
|
||||||
|
.fantasy-calendars
|
||||||
|
> .setting-item:not(.setting-item-heading) {
|
||||||
|
border: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-settings .fantasy-calendar-config .setting-item-name {
|
||||||
|
display: flex;
|
||||||
|
gap: 0.25rem;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Create Calendar Modal */
|
||||||
|
.modal-container.fantasy-calendar-create-calendar > .modal {
|
||||||
|
transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-create-calendar .modal-content {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column nowrap;
|
||||||
|
gap: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-create-calendar .calendar-info .calendar-description {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-create-calendar .calendar-info textarea {
|
||||||
|
resize: vertical;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-create-calendar details {
|
||||||
|
padding: 0.5rem;
|
||||||
|
}
|
||||||
|
.fantasy-calendar-create-calendar details[open] {
|
||||||
|
border: 1px solid var(--background-modifier-border);
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-create-calendar .fantasy-calendar-container .existing-items {
|
||||||
|
overflow: auto;
|
||||||
|
max-height: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-create-calendar
|
||||||
|
.fantasy-calendar-container
|
||||||
|
.existing-items
|
||||||
|
> span {
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
color: var(--text-muted);
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-create-calendar details .setting-item {
|
||||||
|
border: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-create-calendar summary * {
|
||||||
|
display: inline;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.fantasy-context-buttons {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-create-calendar button[disabled] {
|
||||||
|
cursor: not-allowed;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-create-event .event-info {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column nowrap;
|
||||||
|
width: 100%;
|
||||||
|
justify-content: flex-start;
|
||||||
|
align-items: flex-start;
|
||||||
|
gap: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-create-event .event-info > *,
|
||||||
|
.fantasy-calendar-create-event .setting-item {
|
||||||
|
width: 100%;
|
||||||
|
padding-top: 0;
|
||||||
|
padding-bottom: 0.75rem;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
.fantasy-calendar-create-event .event-info > .event-description {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-create-event .event-info textarea {
|
||||||
|
resize: vertical;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Preset Calendar Modal */
|
||||||
|
.fantasy-calendar-choose-preset .fantasy-calendar-preset-container {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 1fr 1fr;
|
||||||
|
grid-auto-rows: 1fr;
|
||||||
|
gap: 1rem;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: flex-start;
|
||||||
|
}
|
||||||
|
.fantasy-calendar-choose-preset .fantasy-calendar-preset-container button {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
white-space: pre-line;
|
||||||
|
max-width: 250px;
|
||||||
|
}
|
||||||
|
.fantasy-calendar-choose-preset
|
||||||
|
.fantasy-calendar-preset-container
|
||||||
|
button.mod-cta {
|
||||||
|
box-shadow: 0px 0px 5px var(--background-modifier-box-shadow);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Leap Day Editor */
|
||||||
|
.fantasy-leap-day-interval-description {
|
||||||
|
color: var(--text-muted);
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-event-date {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr auto;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-picker {
|
||||||
|
padding: 5px 15px;
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column nowrap;
|
||||||
|
justify-content: flex-start;
|
||||||
|
}
|
||||||
|
.fantasy-calendar-full.view-content {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-dropdown {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column;
|
||||||
|
width: 100%;
|
||||||
|
padding-bottom: 0.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-view-event .modal-content {
|
||||||
|
max-width: 75vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-no-calendar {
|
||||||
|
color: var(--text-muted);
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
text-align: center;
|
||||||
|
padding: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-title {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.full-view .fantasy-title {
|
||||||
|
grid-column: span 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-create-calendar .fantasy-calendar-date-fields {
|
||||||
|
padding-top: 0.75rem;
|
||||||
|
}
|
||||||
|
.fantasy-calendar-date-fields {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: flex-start;
|
||||||
|
gap: 0.5rem;
|
||||||
|
padding-bottom: 0.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fantasy-calendar-date-fields .fantasy-calendar-date-field {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column nowrap;
|
||||||
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"id":"obsidian-dialogue-plugin","name":"Dialogue","version":"1.0.1","minAppVersion":"0.12.0","description":"Create dialogues in Markdown.","author":"Jakub Holub","authorUrl":"https://github.com/holubj","isDesktopOnly":false}
|
@ -0,0 +1,58 @@
|
|||||||
|
.dialogue-plugin-wrapper {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dialogue-plugin-block-wrapper {
|
||||||
|
display: flex;
|
||||||
|
margin: 10px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dialogue-plugin-message-wrapper-left {
|
||||||
|
justify-content: start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dialogue-plugin-message-wrapper-right {
|
||||||
|
justify-content: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dialogue-plugin-message {
|
||||||
|
overflow: hidden;
|
||||||
|
max-width: 60%;
|
||||||
|
background-color: var(--background-secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dialogue-plugin-message-title {
|
||||||
|
padding: 5px 10px;
|
||||||
|
font-weight: bold;
|
||||||
|
background-color: rgba(0, 0, 0, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dialogue-plugin-message-content {
|
||||||
|
padding: 5px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dialogue-plugin-delimiter-wrapper {
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dialogue-plugin-delimiter {
|
||||||
|
margin: 20px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dialogue-plugin-delimiter-dot {
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
margin: 0 3px;
|
||||||
|
display: inline-block;
|
||||||
|
border-radius: 50%;
|
||||||
|
background-color: var(--background-secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dialogue-plugin-comment-wrapper {
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dialogue-plugin-comment {
|
||||||
|
margin: 20px 0;
|
||||||
|
text-align: center;
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"code2emoji": true,
|
||||||
|
"suggester": true,
|
||||||
|
"iconpack": {
|
||||||
|
"fab": true,
|
||||||
|
"far": true,
|
||||||
|
"fas": true,
|
||||||
|
"rif": true,
|
||||||
|
"ril": true
|
||||||
|
},
|
||||||
|
"spaceAfterSC": false,
|
||||||
|
"isMigrated": false
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"id":"obsidian-icon-shortcodes","name":"Icon Shortcodes","version":"0.6.0","minAppVersion":"0.13.4","description":"Insert emoji and custom icons with shortcodes","author":"AidenLx","authorUrl":"https://github.com/aidenlx","isDesktopOnly":false}
|
@ -0,0 +1 @@
|
|||||||
|
.mod-settings .isc-add-pack-input{margin-right:5px}.mod-settings .isc-settings-custom-icon .dragover{position:relative;background-color:var(--shade-10);border-radius:5px}.mod-settings .isc-settings-custom-icon .dragover:before{content:"Drop SVG icon(s) here";font-size:16px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:var(--text-normal)}.theme-dark .mod-settings .isc-settings-custom-icon .dragover{background-color:var(--shade-40)}.mod-settings .isc-settings-custom-icon .dragover>*{filter:blur(50px)}.mod-settings .isc-add-pack-input.invalid,.isc-icon-manager .icons .name textarea.invalid{color:var(--text-error);background:var(--background-primary-alt)}.isc-icon-manager .icons{margin-top:10px;display:grid;grid-auto-rows:auto;grid-auto-columns:-webkit-max-content;grid-auto-columns:max-content;grid-template-columns:repeat(auto-fill,minmax(90px,1fr));grid-column-gap:1rem;grid-row-gap:1rem;text-align:center}.isc-icon-manager .icons .item{outline:none}.isc-icon-manager .icons .item .icon{min-height:64px;display:flex;align-items:center;justify-content:center;background:white;border-radius:6px;box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f;border:2px solid transparent;font-size:1.6em}.isc-icon-manager .icons .item .icon>img{width:1em;height:1em}.isc-icon-manager .icons .item .name{height:49px;display:flex;justify-content:center;align-content:center;flex-direction:column}.isc-icon-manager .icons .item .name span{font-size:.7em;overflow:hidden;word-wrap:break-word}.isc-icon-manager .icons .item .name textarea{margin-top:5px;width:100%;padding:0 .5em;font-size:14px}.isc-icon-manager .icons .item .name textarea:disabled{padding:0;font-size:16px;border:hidden;text-align:center;background:transparent}.isc-icon-manager .icons .item .buttons button{padding:4px 6px;margin:0 1px}img.isc-icon{display:inline;height:1em;width:1em;vertical-align:text-top}.markdown-preview-view img.isc-icon,.markdown-source-view img.isc-icon{height:var(--editor-font-size);width:var(--editor-font-size)}.theme-dark img.isc-icon.isc-fab,.theme-dark img.isc-icon.isc-far,.theme-dark img.isc-icon.isc-fas,.theme-dark img.isc-icon.isc-rif,.theme-dark img.isc-icon.isc-ril{filter:invert(1)}.isc.suggestion-container .suggestion-item{display:flex;place-content:space-between}.isc.suggestion-container .suggestion-item .shortcode{margin-right:8px}.isc.suggestion-container .suggestion-item img.isc-icon{display:inline;height:var(--font-normal);width:var(--font-normal)}
|
@ -1,8 +1,18 @@
|
|||||||
{
|
{
|
||||||
"pluginList": [
|
"pluginList": [
|
||||||
|
"holubj/obsidian-dialogue-plugin",
|
||||||
|
"deathau/cooklang-obsidian",
|
||||||
|
"aidenlx/obsidian-icon-shortcodes",
|
||||||
"James-Fallon/obsidian-lineup-builder",
|
"James-Fallon/obsidian-lineup-builder",
|
||||||
"kinabalu/obsidian-crypto-lookup",
|
"kinabalu/obsidian-crypto-lookup",
|
||||||
"joethei/obsidian-rss"
|
"joethei/obsidian-rss"
|
||||||
],
|
],
|
||||||
"updateAtStartup": false
|
"themesList": [],
|
||||||
|
"updateAtStartup": false,
|
||||||
|
"updateThemesAtStartup": false,
|
||||||
|
"ribbonIconEnabled": true,
|
||||||
|
"loggingEnabled": false,
|
||||||
|
"loggingPath": "BRAT-log",
|
||||||
|
"loggingVerboseEnabled": false,
|
||||||
|
"debuggingMode": true
|
||||||
}
|
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,14 @@
|
|||||||
|
```dialogue
|
||||||
|
left: Boubinou
|
||||||
|
right: Mel-mo
|
||||||
|
titleMode: all
|
||||||
|
messageMaxWidth: 40%
|
||||||
|
< ohlala, i am so sick in my tummy
|
||||||
|
# Boubinou looks full of beans
|
||||||
|
< i need to go home!
|
||||||
|
delimiter
|
||||||
|
> I can smell a lil' rat! Somebody does not seem to want to finish her French class
|
||||||
|
< heho
|
||||||
|
< I am sooo sick! It happens everytime i forget to take my pill.
|
||||||
|
< Pass me the biscuits!!
|
||||||
|
```
|
Loading…
Reference in new issue