Updated: Tuesday, October 10,2023-10-10 13:25:01
parent
63abfc00cd
commit
e7239473fa
File diff suppressed because one or more lines are too long
|
@ -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.4.19",
|
||||||
|
"author": "shabegom",
|
||||||
|
"authorUrl": "https://shbgm.ca",
|
||||||
|
"isDesktopOnly": false,
|
||||||
|
"minAppVersion": "0.12.8"
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
|
@ -1,13 +1,13 @@
|
||||||
{
|
{
|
||||||
"recentFiles": [
|
"recentFiles": [
|
||||||
{
|
|
||||||
"basename": "Untitled",
|
|
||||||
"path": "Untitled.canvas"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"basename": "The Integrate Whiteboard",
|
"basename": "The Integrate Whiteboard",
|
||||||
"path": "The Integrate Whiteboard.md"
|
"path": "The Integrate Whiteboard.md"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"basename": "Untitled",
|
||||||
|
"path": "Untitled.canvas"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"basename": "Related Projects",
|
"basename": "Related Projects",
|
||||||
"path": "Coding Tips (Classical)/Project Vault/Communication Projects/Typewriter/Related Projects.md"
|
"path": "Coding Tips (Classical)/Project Vault/Communication Projects/Typewriter/Related Projects.md"
|
||||||
|
|
|
@ -23,14 +23,11 @@
|
||||||
"id": "9600f3812aeb8311",
|
"id": "9600f3812aeb8311",
|
||||||
"type": "leaf",
|
"type": "leaf",
|
||||||
"state": {
|
"state": {
|
||||||
"type": "canvas",
|
"type": "markdown",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Untitled.canvas",
|
"file": "The Integrate Whiteboard.md",
|
||||||
"viewState": {
|
"mode": "source",
|
||||||
"x": -35.890665842753336,
|
"source": false
|
||||||
"y": -53.05042698464307,
|
|
||||||
"zoom": 0.5372398153940836
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -94,8 +91,7 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"direction": "horizontal",
|
"direction": "horizontal",
|
||||||
"width": 300,
|
"width": 300
|
||||||
"collapsed": true
|
|
||||||
},
|
},
|
||||||
"right": {
|
"right": {
|
||||||
"id": "4bd9c02fbfe6785f",
|
"id": "4bd9c02fbfe6785f",
|
||||||
|
@ -111,7 +107,7 @@
|
||||||
"state": {
|
"state": {
|
||||||
"type": "backlink",
|
"type": "backlink",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Untitled.canvas",
|
"file": "The Integrate Whiteboard.md",
|
||||||
"collapseAll": false,
|
"collapseAll": false,
|
||||||
"extraContext": false,
|
"extraContext": false,
|
||||||
"sortOrder": "alphabetical",
|
"sortOrder": "alphabetical",
|
||||||
|
@ -128,7 +124,7 @@
|
||||||
"state": {
|
"state": {
|
||||||
"type": "outgoing-link",
|
"type": "outgoing-link",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Untitled.canvas",
|
"file": "The Integrate Whiteboard.md",
|
||||||
"linksCollapsed": false,
|
"linksCollapsed": false,
|
||||||
"unlinkedCollapsed": true
|
"unlinkedCollapsed": true
|
||||||
}
|
}
|
||||||
|
@ -151,7 +147,7 @@
|
||||||
"state": {
|
"state": {
|
||||||
"type": "outline",
|
"type": "outline",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Untitled.canvas"
|
"file": "The Integrate Whiteboard.md"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -178,8 +174,8 @@
|
||||||
},
|
},
|
||||||
"active": "9600f3812aeb8311",
|
"active": "9600f3812aeb8311",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
"The Integrate Whiteboard.md",
|
|
||||||
"Untitled.canvas",
|
"Untitled.canvas",
|
||||||
|
"The Integrate Whiteboard.md",
|
||||||
"Coding Tips (Classical)/Project Vault/Communication Projects/Typewriter/Related Projects.md"
|
"Coding Tips (Classical)/Project Vault/Communication Projects/Typewriter/Related Projects.md"
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -8,4 +8,11 @@ The collaborative experience is heavily desired one as it is most intuitive to
|
||||||
- Canvas feature on here
|
- Canvas feature on here
|
||||||
- [Miro](https://miro.com/apps/)
|
- [Miro](https://miro.com/apps/)
|
||||||
- [Mural](https://www.mural.co/)
|
- [Mural](https://www.mural.co/)
|
||||||
- https://www.fabrie.com/home
|
- https://www.fabrie.com/home
|
||||||
|
|
||||||
|
```button
|
||||||
|
name Add Em Up
|
||||||
|
type calculate
|
||||||
|
action 2+2
|
||||||
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue