generated from DNDs/dnd-template
vault auto-backup: 13.07.2022 - 07:48:09
Affected files: .obsidian/community-plugins.json .obsidian/plugins/cmenu-plugin/data.json .obsidian/plugins/cmenu-plugin/main.js .obsidian/plugins/cmenu-plugin/manifest.json .obsidian/plugins/cmenu-plugin/styles.css .obsidian/workspace Private/Rapha/Phantasialand.md
This commit is contained in:
parent
2c8c3fb92b
commit
9c6f734fdc
3
.obsidian/community-plugins.json
vendored
3
.obsidian/community-plugins.json
vendored
@ -4,5 +4,6 @@
|
|||||||
"obsidian-image-toolkit",
|
"obsidian-image-toolkit",
|
||||||
"obsidian-icons-plugin",
|
"obsidian-icons-plugin",
|
||||||
"obsidian-reading-time",
|
"obsidian-reading-time",
|
||||||
"dataview"
|
"dataview",
|
||||||
|
"cmenu-plugin"
|
||||||
]
|
]
|
55
.obsidian/plugins/cmenu-plugin/data.json
vendored
Normal file
55
.obsidian/plugins/cmenu-plugin/data.json
vendored
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
{
|
||||||
|
"aestheticStyle": "default",
|
||||||
|
"menuCommands": [
|
||||||
|
{
|
||||||
|
"id": "cmenu-plugin:editor:toggle-bold",
|
||||||
|
"name": "cMenu: Toggle bold",
|
||||||
|
"icon": "bold-glyph"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "cmenu-plugin:editor:toggle-italics",
|
||||||
|
"name": "cMenu: Toggle italics",
|
||||||
|
"icon": "italic-glyph"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "cmenu-plugin:editor:toggle-strikethrough",
|
||||||
|
"name": "cMenu: Toggle strikethrough",
|
||||||
|
"icon": "strikethrough-glyph"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "cmenu-plugin:underline",
|
||||||
|
"name": "cMenu: Toggle underline",
|
||||||
|
"icon": "underline-glyph"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "cmenu-plugin:superscript",
|
||||||
|
"name": "cMenu: Toggle superscript",
|
||||||
|
"icon": "superscript-glyph"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "cmenu-plugin:subscript",
|
||||||
|
"name": "cMenu: Toggle subscript",
|
||||||
|
"icon": "subscript-glyph"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "cmenu-plugin:editor:toggle-code",
|
||||||
|
"name": "cMenu: Toggle code",
|
||||||
|
"icon": "code-glyph"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "cmenu-plugin:codeblock",
|
||||||
|
"name": "cMenu: Toggle codeblock",
|
||||||
|
"icon": "codeblock-glyph"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "cmenu-plugin:editor:toggle-blockquote",
|
||||||
|
"name": "cMenu: Toggle blockquote",
|
||||||
|
"icon": "quote-glyph"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"appendMethod": "body",
|
||||||
|
"shouldShowMenuOnSelect": false,
|
||||||
|
"cMenuVisibility": true,
|
||||||
|
"cMenuBottomValue": 4.25,
|
||||||
|
"cMenuNumRows": 9
|
||||||
|
}
|
19821
.obsidian/plugins/cmenu-plugin/main.js
vendored
Normal file
19821
.obsidian/plugins/cmenu-plugin/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/cmenu-plugin/manifest.json
vendored
Normal file
10
.obsidian/plugins/cmenu-plugin/manifest.json
vendored
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"id": "cmenu-plugin",
|
||||||
|
"name": "cMenu",
|
||||||
|
"version": "1.1.2",
|
||||||
|
"minAppVersion": "0.9.12",
|
||||||
|
"description": "cMenu is a plugin that adds a minimal text editor modal for a smoother writing/editing experience ✍🏽.",
|
||||||
|
"author": "chetachi",
|
||||||
|
"authorUrl": "https://github.com/chetachiezikeuzor",
|
||||||
|
"isDesktopOnly": true
|
||||||
|
}
|
234
.obsidian/plugins/cmenu-plugin/styles.css
vendored
Normal file
234
.obsidian/plugins/cmenu-plugin/styles.css
vendored
Normal file
@ -0,0 +1,234 @@
|
|||||||
|
/*----------------------------------------------------------------
|
||||||
|
CMENU TOOLBAR
|
||||||
|
----------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#cMenuModalBar {
|
||||||
|
width: auto;
|
||||||
|
height: auto;
|
||||||
|
padding: 3px;
|
||||||
|
display: grid;
|
||||||
|
user-select: none;
|
||||||
|
border-radius: 6px;
|
||||||
|
position: absolute;
|
||||||
|
transition: 200ms ease;
|
||||||
|
min-width: fit-content;
|
||||||
|
justify-content: space-around;
|
||||||
|
z-index: var(--layer-status-bar);
|
||||||
|
box-shadow: 0px 3px 32px rgb(31 38 135 / 15%);
|
||||||
|
border: 1px solid var(--background-modifier-border);
|
||||||
|
}
|
||||||
|
|
||||||
|
#cMenuModalBar .cMenuCommandItem {
|
||||||
|
margin: 2px;
|
||||||
|
border: none;
|
||||||
|
display: flex;
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 5px 6px;
|
||||||
|
box-shadow: none;
|
||||||
|
margin-left: 3px;
|
||||||
|
margin-right: 3px;
|
||||||
|
position: relative;
|
||||||
|
border-radius: 3px;
|
||||||
|
font-size: initial !important;
|
||||||
|
background-color: var(--background-primary-alt);
|
||||||
|
}
|
||||||
|
|
||||||
|
#cMenuModalBar button.cMenuCommandItem:hover {
|
||||||
|
background-color: var(--background-secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
#cMenuModalBar button.cMenuCommandItem svg {
|
||||||
|
width: 1.3em;
|
||||||
|
height: 1.3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------
|
||||||
|
CMENU SETTINGS BUTTONS
|
||||||
|
----------------------------------------------------------------*/
|
||||||
|
|
||||||
|
.modal.mod-settings
|
||||||
|
button:not(.mod-cta):not(.mod-warning).cMenuSettingsButton.cMenuSettingsButtonAdd,
|
||||||
|
button:not(.mod-cta):not(.mod-warning).cMenuSettingsButton.cMenuSettingsButtonAdd {
|
||||||
|
background-color: var(--interactive-accent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal.mod-settings
|
||||||
|
button:not(.mod-cta):not(.mod-warning).cMenuSettingsButton.cMenuSettingsButtonDelete,
|
||||||
|
button:not(.mod-cta):not(.mod-warning).cMenuSettingsButton.cMenuSettingsButtonDelete {
|
||||||
|
background-color: #989cab;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal.mod-settings
|
||||||
|
button:not(.mod-cta):not(.mod-warning).cMenuSettingsButton.cMenuSettingsButtonRefresh,
|
||||||
|
button:not(.mod-cta):not(.mod-warning).cMenuSettingsButton.cMenuSettingsButtonRefresh {
|
||||||
|
background-color: var(--text-accent);
|
||||||
|
}
|
||||||
|
|
||||||
|
button.cMenuSettingsButton {
|
||||||
|
padding: 4px 14px;
|
||||||
|
border-radius: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cMenuSettingsButton svg {
|
||||||
|
width: 1.3em;
|
||||||
|
height: 1.3em;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------
|
||||||
|
CMENU SETTING ITEMS
|
||||||
|
----------------------------------------------------------------*/
|
||||||
|
.setting-item.cMenuCommandItem:first-child {
|
||||||
|
padding-top: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cMenuCommandItem {
|
||||||
|
cursor: grab;
|
||||||
|
padding: 18px 0 18px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sortable-fallback {
|
||||||
|
cursor: grabbing;
|
||||||
|
box-shadow: 0px 3px 32px rgb(31 38 135 / 15%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.sortable-grab {
|
||||||
|
cursor: grabbing !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sortable-ghost {
|
||||||
|
opacity: 0.4;
|
||||||
|
cursor: grabbing;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sortable-chosen {
|
||||||
|
cursor: grabbing;
|
||||||
|
padding: 18px 0 18px 18px;
|
||||||
|
background-color: var(--background-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.sortable-drag {
|
||||||
|
cursor: grabbing;
|
||||||
|
box-shadow: 0px 3px 32px rgb(31 38 135 / 15%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cMenuSettingsTabsContainer {
|
||||||
|
border-top: 1px solid var(--background-modifier-border);
|
||||||
|
border-bottom: 1px solid var(--background-modifier-border);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------
|
||||||
|
CMENU CLASS CHANGES
|
||||||
|
----------------------------------------------------------------*/
|
||||||
|
|
||||||
|
.cMenuGlassAesthetic {
|
||||||
|
backdrop-filter: blur(8px);
|
||||||
|
-webkit-backdrop-filter: blur(8px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cMenuDefaultAesthetic {
|
||||||
|
background-color: var(--background-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------
|
||||||
|
CMENU ICONS
|
||||||
|
----------------------------------------------------------------*/
|
||||||
|
|
||||||
|
.cMenuIconPick {
|
||||||
|
line-height: normal;
|
||||||
|
vertical-align: middle;
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cMenuIconPick svg {
|
||||||
|
width: 17px;
|
||||||
|
height: 17px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------
|
||||||
|
CMENU STATUS BAR MENU
|
||||||
|
----------------------------------------------------------------*/
|
||||||
|
|
||||||
|
.cMenu-statusbar-menu {
|
||||||
|
width: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cMenu-statusbar-menu .menu-item-icon {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cMenu-statusbar-menu .menu-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cMenu-statusbar-menu .menu-item.settings-item {
|
||||||
|
font-size: 12px;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 1;
|
||||||
|
border-radius: 5px;
|
||||||
|
height: auto;
|
||||||
|
padding: 8px 5px 0px 5px;
|
||||||
|
margin: 0 auto;
|
||||||
|
width: fit-content;
|
||||||
|
color: var(--text-faint);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cMenu-statusbar-menu .menu-item.settings-item .menu-item-title {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cMenu-statusbar-menu .menu-item:hover,
|
||||||
|
.cMenu-statusbar-menu .menu-item .selected:hover,
|
||||||
|
.cMenu-statusbar-menu .menu-item.selected:not(.is-disabled):not(.is-label) {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cMenu-statusbar-menu .menu-item-title {
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cMenu-statusbar-menu .slider {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cMenu-statusbar-menu .menu-item.buttonitem {
|
||||||
|
padding-top: 10px;
|
||||||
|
padding-bottom: 4px;
|
||||||
|
height: fit-content;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cMenu-statusbar-menu .menu-item.buttonitem button.cMenuSettingsButton {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------
|
||||||
|
CMENU STATUS BAR BUTTONS
|
||||||
|
----------------------------------------------------------------*/
|
||||||
|
|
||||||
|
.cMenu-statusbar-button {
|
||||||
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cMenu-statusbar-button svg {
|
||||||
|
display: flex;
|
||||||
|
width: 1.3em;
|
||||||
|
height: 1.3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------
|
||||||
|
CMENU SUPPORT
|
||||||
|
----------------------------------------------------------------*/
|
||||||
|
|
||||||
|
.cDonationSection {
|
||||||
|
width: 60%;
|
||||||
|
height: 50vh;
|
||||||
|
margin: 0 auto;
|
||||||
|
text-align: center;
|
||||||
|
color: var(--text-normal);
|
||||||
|
}
|
17
.obsidian/workspace
vendored
17
.obsidian/workspace
vendored
@ -4,13 +4,14 @@
|
|||||||
"type": "split",
|
"type": "split",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "624fc6cedfec68e9",
|
"id": "bee0658abbede9cb",
|
||||||
"type": "leaf",
|
"type": "leaf",
|
||||||
"state": {
|
"state": {
|
||||||
"type": "diff-view",
|
"type": "markdown",
|
||||||
"state": {
|
"state": {
|
||||||
"file": ".obsidian/workspace",
|
"file": "Private/Rapha/Phantasialand.md",
|
||||||
"staged": true
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -75,6 +76,7 @@
|
|||||||
"state": {
|
"state": {
|
||||||
"type": "backlink",
|
"type": "backlink",
|
||||||
"state": {
|
"state": {
|
||||||
|
"file": "Private/Rapha/Phantasialand.md",
|
||||||
"collapseAll": false,
|
"collapseAll": false,
|
||||||
"extraContext": false,
|
"extraContext": false,
|
||||||
"sortOrder": "alphabetical",
|
"sortOrder": "alphabetical",
|
||||||
@ -91,6 +93,7 @@
|
|||||||
"state": {
|
"state": {
|
||||||
"type": "outgoing-link",
|
"type": "outgoing-link",
|
||||||
"state": {
|
"state": {
|
||||||
|
"file": "Private/Rapha/Phantasialand.md",
|
||||||
"linksCollapsed": false,
|
"linksCollapsed": false,
|
||||||
"unlinkedCollapsed": true
|
"unlinkedCollapsed": true
|
||||||
}
|
}
|
||||||
@ -127,7 +130,9 @@
|
|||||||
"type": "leaf",
|
"type": "leaf",
|
||||||
"state": {
|
"state": {
|
||||||
"type": "outline",
|
"type": "outline",
|
||||||
"state": {}
|
"state": {
|
||||||
|
"file": "Private/Rapha/Phantasialand.md"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -167,7 +172,7 @@
|
|||||||
"direction": "horizontal",
|
"direction": "horizontal",
|
||||||
"width": 303
|
"width": 303
|
||||||
},
|
},
|
||||||
"active": "624fc6cedfec68e9",
|
"active": "bee0658abbede9cb",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
"Private/Rapha/Phantasialand.md",
|
"Private/Rapha/Phantasialand.md",
|
||||||
"Private/Rapha/rapharat.md",
|
"Private/Rapha/rapharat.md",
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
Todo!
|
Done!
|
||||||
|
|
||||||
Hotel Ling Bao | Berggeiststraße 31-41 | 50321 | Brühl
|
Hotel Ling Bao | Berggeiststraße 31-41 | 50321 | Brühl
|
||||||
Telefon: [+49 (0)2232 36 666](tel:+49 2232 36 666) | Fax: | E-Mail: [hotel@phantasialand.de](mailto:hotel@phantasialand.de)
|
Telefon: [+49 (0)2232 36 666](tel:+49 2232 36 666) | Fax: | E-Mail: [hotel@phantasialand.de](mailto:hotel@phantasialand.de)
|
Loading…
Reference in New Issue
Block a user