everything
This commit is contained in:
commit
8f7278c6aa
105 changed files with 1206534 additions and 0 deletions
323222
notes/.obsidian/plugins/obsidian-excalidraw-plugin/data.json
vendored
Normal file
323222
notes/.obsidian/plugins/obsidian-excalidraw-plugin/data.json
vendored
Normal file
File diff suppressed because it is too large
Load diff
24
notes/.obsidian/plugins/obsidian-excalidraw-plugin/main.js
vendored
Normal file
24
notes/.obsidian/plugins/obsidian-excalidraw-plugin/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
notes/.obsidian/plugins/obsidian-excalidraw-plugin/manifest.json
vendored
Normal file
10
notes/.obsidian/plugins/obsidian-excalidraw-plugin/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "obsidian-excalidraw-plugin",
|
||||
"name": "Excalidraw",
|
||||
"version": "1.7.20",
|
||||
"minAppVersion": "0.15.6",
|
||||
"description": "An Obsidian plugin to edit and view Excalidraw drawings",
|
||||
"author": "Zsolt Viczian",
|
||||
"authorUrl": "https://zsolt.blog",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
222
notes/.obsidian/plugins/obsidian-excalidraw-plugin/styles.css
vendored
Normal file
222
notes/.obsidian/plugins/obsidian-excalidraw-plugin/styles.css
vendored
Normal file
|
|
@ -0,0 +1,222 @@
|
|||
.App {
|
||||
font-family: sans-serif;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.excalidraw-wrapper {
|
||||
height: 100%;
|
||||
margin: 0px;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.context-menu-option__shortcut {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
.block-language-excalidraw {
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.excalidraw .github-corner {
|
||||
display: none;
|
||||
}
|
||||
|
||||
img.excalidraw-svg-right-wrap {
|
||||
float: right;
|
||||
margin: 0px 0px 20px 20px;
|
||||
}
|
||||
|
||||
img.excalidraw-svg-left-wrap {
|
||||
float: left;
|
||||
margin: 0px 35px 20px 0px;
|
||||
}
|
||||
|
||||
img.excalidraw-svg-right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.excalidraw-svg-center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
img.excalidraw-svg-left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
div.excalidraw-svg-right,
|
||||
div.excalidraw-svg-left {
|
||||
display: table;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
button.ToolIcon_type_button[title="Export"] {
|
||||
display:none;
|
||||
}
|
||||
|
||||
.excalidraw-prompt-div {
|
||||
display: flex;
|
||||
max-width: 800px;
|
||||
}
|
||||
|
||||
.excalidraw-prompt-form {
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.excalidraw-prompt-input {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
li[data-testid] {
|
||||
border: 0 !important;
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
.excalidraw .context-menu-option-separator {
|
||||
margin: 4px !important;
|
||||
}
|
||||
|
||||
.excalidraw .popover {
|
||||
padding: 0 !important;
|
||||
border-color: transparent !important;
|
||||
border: 0 !important;
|
||||
box-shadow: 0 !important;
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
.disable-zen-mode--visible {
|
||||
color: var(--text-primary-color);
|
||||
}
|
||||
|
||||
.disable-zen-mode {
|
||||
width: 9em !important;
|
||||
}
|
||||
|
||||
.ex-coffee-div {
|
||||
text-align: center;
|
||||
margin-bottom: 20px;
|
||||
|
||||
}
|
||||
|
||||
.excalidraw-scriptengine-install td>img {
|
||||
width: 100%;
|
||||
max-width:800px;
|
||||
}
|
||||
|
||||
.excalidraw-scriptengine-install img.coffee {
|
||||
width: 130px;
|
||||
}
|
||||
|
||||
.excalidraw-scriptengine-install tr {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.excalidraw-scriptengine-install table {
|
||||
max-width: 130ch;
|
||||
}
|
||||
|
||||
.excalidraw-scriptengine-install td.label {
|
||||
min-width: 11ch;
|
||||
font-weight: bold;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
.excalidraw-scriptengine-install td.data {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.excalidraw-scriptengine-install .modal-content {
|
||||
max-width: 130ch;
|
||||
user-select: text;
|
||||
}
|
||||
|
||||
.excalidraw-scriptengine-install .modal {
|
||||
max-height:90%;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.excalidraw-prompt-center {
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
.excalidraw-prompt-center button {
|
||||
margin: 0 10px;
|
||||
}
|
||||
|
||||
.excalidraw-prompt-center.filepath {
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
margin-bottom: 2em;
|
||||
}
|
||||
|
||||
.excalidraw-dirty {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.workspace-leaf-content .excalidraw-view {
|
||||
padding: 0px 1px; /*1px so on ipad swipe in from left and right still works*/
|
||||
}
|
||||
|
||||
.excalidraw-videoWrapper {
|
||||
max-width:600px
|
||||
}
|
||||
.excalidraw-videoWrapper div {
|
||||
position: relative;
|
||||
padding-bottom: 56.25%;
|
||||
height: 0;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.excalidraw-videoWrapper iframe {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.excalidraw-release .modal-content{
|
||||
padding-right: 5px;
|
||||
margin-right: -5px;
|
||||
user-select: text;
|
||||
}
|
||||
|
||||
.excalidraw-release .modal {
|
||||
max-height: 90%;
|
||||
width: auto;
|
||||
max-width: 130ch;
|
||||
}
|
||||
|
||||
.excalidraw .Island .scrollbar {
|
||||
--scrollbar-thumb-bg: silver;
|
||||
}
|
||||
|
||||
.excalidraw .ToolIcon__icon img{
|
||||
height: 1em;
|
||||
}
|
||||
|
||||
.excalidraw-scriptengine-install tbody>tr>td>div>img {
|
||||
height:20px;
|
||||
background-color: silver;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.excalidraw-scriptengine-install tbody>tr>td>div {
|
||||
width: 50px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.excalidraw-release p>a>img {
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.excalidraw .context-menu-option {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
textarea.excalidraw-wysiwyg {
|
||||
border-color: transparent !important;
|
||||
border-radius: 0 !important;
|
||||
}
|
||||
114
notes/.obsidian/plugins/obsidian-kanban/main.js
vendored
Normal file
114
notes/.obsidian/plugins/obsidian-kanban/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
notes/.obsidian/plugins/obsidian-kanban/manifest.json
vendored
Normal file
10
notes/.obsidian/plugins/obsidian-kanban/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "obsidian-kanban",
|
||||
"name": "Kanban",
|
||||
"version": "1.3.20",
|
||||
"minAppVersion": "0.15.3",
|
||||
"description": "Create markdown-backed Kanban boards in Obsidian.",
|
||||
"author": "mgmeyers",
|
||||
"authorUrl": "https://github.com/mgmeyers/obsidian-kanban",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
1
notes/.obsidian/plugins/obsidian-kanban/styles.css
vendored
Normal file
1
notes/.obsidian/plugins/obsidian-kanban/styles.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1986
notes/.obsidian/plugins/obsidian-linter/main.js
vendored
Normal file
1986
notes/.obsidian/plugins/obsidian-linter/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
notes/.obsidian/plugins/obsidian-linter/manifest.json
vendored
Normal file
10
notes/.obsidian/plugins/obsidian-linter/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "obsidian-linter",
|
||||
"name": "Linter",
|
||||
"version": "1.5.0",
|
||||
"minAppVersion": "0.15.6",
|
||||
"description": "Enforces consistent markdown styling.",
|
||||
"author": "Victor Tao",
|
||||
"authorUrl": "https://github.com/platers",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
11
notes/.obsidian/plugins/obsidian-tabs/data.json
vendored
Normal file
11
notes/.obsidian/plugins/obsidian-tabs/data.json
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"tabEnabled": true,
|
||||
"rowOverflow": false,
|
||||
"horizontalToVertical": false,
|
||||
"hideButtons": true,
|
||||
"smallTitle": false,
|
||||
"compactTitle": false,
|
||||
"tabNumbering": true,
|
||||
"tabUnderline": false,
|
||||
"headerHeight": 29
|
||||
}
|
||||
257
notes/.obsidian/plugins/obsidian-tabs/main.js
vendored
Normal file
257
notes/.obsidian/plugins/obsidian-tabs/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
notes/.obsidian/plugins/obsidian-tabs/manifest.json
vendored
Normal file
10
notes/.obsidian/plugins/obsidian-tabs/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "obsidian-tabs",
|
||||
"name": "Obsidian Tabs",
|
||||
"version": "1.0.7",
|
||||
"minAppVersion": "0.11.13",
|
||||
"description": "Opens new leaves in tabs.",
|
||||
"author": "foreveryone",
|
||||
"authorUrl": "https://github.com/gitobsidiantutorial/obsidian-tabs",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
303
notes/.obsidian/plugins/obsidian-tabs/styles.css
vendored
Normal file
303
notes/.obsidian/plugins/obsidian-tabs/styles.css
vendored
Normal file
|
|
@ -0,0 +1,303 @@
|
|||
:root{
|
||||
--headerheight: 29px;
|
||||
}
|
||||
|
||||
.plugin-tabs .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical,
|
||||
.plugin-tabs .mod-root.workspace-split.mod-vertical{
|
||||
overflow-x: hidden;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
align-content: flex-start;
|
||||
align-items: stretch;
|
||||
overflow-y: hidden;
|
||||
--jstabs: 0;
|
||||
--tabs: 10;
|
||||
--rowsjs: 1;
|
||||
--rows1 : 1;
|
||||
--rows : min(var(--rows1),var(--rowsjs));
|
||||
--numtabs : max(var(--jstabs),var(--tabs));
|
||||
--w1 : calc(100% * var(--rows) / var(--numtabs));
|
||||
--w2 : max(20% , 14.5rem/*alter width of tab here*/);
|
||||
}
|
||||
|
||||
.plugin-tabs.rowoverflow .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical,
|
||||
.plugin-tabs.rowoverflow .mod-root.workspace-split.mod-vertical {
|
||||
--rows1: 2;
|
||||
--rows : min(var(--rows1),var(--rowsjs));
|
||||
--w1 : calc(100% * var(--rows) / var(--numtabs));
|
||||
}
|
||||
|
||||
|
||||
.plugin-tabs .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf,
|
||||
.plugin-tabs .mod-root.workspace-split.mod-vertical > div.workspace-leaf {
|
||||
flex-grow: 1;
|
||||
flex-shrink: 1;
|
||||
min-width: var(--w1);
|
||||
max-width: var(--w2);
|
||||
height: var(--headerheight);
|
||||
padding-right: 0px;
|
||||
border-radius: 10px 10px 0px 0px; /* adds a slight rounding to the top corners of a pane header - NOT ESSENTIAL */
|
||||
border: 1px solid var(--background-modifier-border); /* adds a slight outline to the tab header - NOT ESSENTIAL */
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.plugin-tabs .view-content {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.plugin-tabs .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen .view-header,
|
||||
.plugin-tabs .mod-root.workspace-split.mod-vertical > .workspace-split.mod-vertical > div.workspace-leaf .view-header,
|
||||
.plugin-tabs .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen .view-header{border-left: 1px solid var(--background-modifier-border) } /* adds a slight outline to the main window header - NOT ESSENTIAL */
|
||||
|
||||
.plugin-tabs .mod-root.workspace-split.mod-vertical div .view-header{
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.plugin-tabs .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf.stayopen,
|
||||
.plugin-tabs .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen,
|
||||
.plugin-tabs .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf.stayopen,
|
||||
.plugin-tabs .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen {
|
||||
align-self: stretch;
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
order: 99;
|
||||
min-width: 100%;
|
||||
max-width: 100%;
|
||||
min-height: calc(100% - var(--headerheight) * var(--rows));
|
||||
overflow-y: hidden;
|
||||
padding-right: 1px;
|
||||
border-radius: 0;
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.plugin-tabs .mod-root.workspace-split.mod-vertical.maximised .workspace-split.mod-vertical > div.workspace-leaf.stayopen, .mod-root.workspace-split.mod-vertical.maximised > div.workspace-leaf.stayopen {
|
||||
height: 100%!important;
|
||||
top: 0px;
|
||||
border-radius: 10px 0px 0px 0px;
|
||||
border-top: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
.plugin-tabs .maximised .view-header {height: var(--headerheight); border-left: 1px solid var(--background-modifier-border)}
|
||||
|
||||
.plugin-tabs .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf:only-of-type,
|
||||
.plugin-tabs .mod-root.workspace-split.mod-vertical > div.workspace-leaf:only-of-type { /*if only one pane open, maximise*/
|
||||
top: 0px;
|
||||
bottom: 0px;
|
||||
height: 100%!important;
|
||||
}
|
||||
|
||||
.plugin-tabs .mod-root.workspace-split.mod-vertical .workspace-leaf .view-header {
|
||||
height: calc(var(--headerheight) + 3px);
|
||||
}
|
||||
|
||||
.plugin-tabs .mod-root.workspace-split.mod-vertical > div.workspace-leaf:only-of-type .view-header {
|
||||
height: var(--headerheight);
|
||||
}
|
||||
|
||||
.plugin-tabs .view-header-title-container::after { /* remove pane header shadows */
|
||||
display:none;
|
||||
}
|
||||
|
||||
/* OPTIONAL */
|
||||
|
||||
/* non pane relief options */
|
||||
|
||||
/* optional feature vertical side-by-side view */
|
||||
.plugin-tabs:not(.horizontal-to-vertical) .mod-root.workspace-split.mod-vertical > .workspace-split.mod-horizontal{
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.plugin-tabs:not(.horizontal-to-vertical) .mod-root.workspace-split.mod-vertical > .workspace-split.mod-horizontal > * {
|
||||
width: 100%;
|
||||
flex: 1 0 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.plugin-tabs:not(.horizontal-to-vertical) .mod-root.workspace-split.mod-vertical > .workspace-split.mod-horizontal > .workspace-leaf:nth-of-type(n+1){
|
||||
border-radius: 10px 10px 0px 0px; /* adds a slight rounding to the top corners of a pane header - NOT ESSENTIAL */
|
||||
border: 1px solid var(--background-modifier-border); /* adds a slight outline to the tab header - NOT ESSENTIAL */
|
||||
border-bottom: 0;
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
.plugin-tabs:not(.horizontal-to-vertical) .mod-root.workspace-split.mod-vertical > .workspace-split.mod-horizontal .workspace-leaf:nth-of-type(n+1) .view-header {height: var(--headerheight); }
|
||||
|
||||
.plugin-tabs:not(.horizontal-to-vertical) .mod-root.workspace-split.mod-vertical > .workspace-split.mod-horizontal hr.workspace-leaf-resize-handle{
|
||||
display: none
|
||||
}
|
||||
|
||||
/* optional feature increase room for tab title */
|
||||
|
||||
.plugin-tabs:not(.compact-title) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf:not(.stayopen) .view-actions, /*decrease horizontal padding for tab actions to zero*/
|
||||
.mod-root.workspace-split.mod-vertical > div.workspace-leaf:not(.stayopen) .view-actions{
|
||||
padding: 4px 0px;
|
||||
}
|
||||
|
||||
.plugin-tabs:not(.compact-title) .workspace .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf.stayopen .view-actions, /*decrease horizontal padding for tab actions to zero*/
|
||||
.workspace .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen .view-actions{
|
||||
padding: 4px 10px;
|
||||
}
|
||||
|
||||
.plugin-tabs:not(.compact-title) .workspace .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf.stayopen .view-action.mod-close-leaf, /*decrease margin for close button*/
|
||||
.workspace .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen .view-action.mod-close-leaf{
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.plugin-tabs:not(.compact-title) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf:not(.stayopen) .view-action.mod-close-leaf, /*decrease margin for close button*/
|
||||
.mod-root.workspace-split.mod-vertical > div.workspace-leaf:not(.stayopen) .view-action.mod-close-leaf{
|
||||
margin-left: 0px;
|
||||
}
|
||||
|
||||
.workspace-leaf .view-header-title{cursor: context-menu}
|
||||
|
||||
div.workspace-leaf.stayopen .view-header-title,
|
||||
div.workspace-leaf.stayopen .view-header-title{cursor: text}
|
||||
|
||||
/* optional feature smaller tab titles */
|
||||
.plugin-tabs:not(.small-title) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf:not(.stayopen) .view-header-title,
|
||||
.plugin-tabs:not(.small-title) .mod-root > div.workspace-leaf:not(.stayopen) .view-header-title,
|
||||
.plugin-tabs:not(.small-title) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf:not(.stayopen) .view-header-title,
|
||||
.plugin-tabs:not(.small-title) .mod-root > div.workspace-leaf:not(.stayopen) .view-header-title{
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
|
||||
.plugin-tabs:not(.small-title) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf.stayopen .view-header-title,
|
||||
.plugin-tabs:not(.small-title) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen .view-header-title,
|
||||
.plugin-tabs:not(.small-title) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf.stayopen .view-header-title,
|
||||
.plugin-tabs:not(.small-title) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen .view-header-title{
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* optional feature hide header button, more options, and edit button on tabs */
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf a[aria-label="Edit (Ctrl/Cmd+Click to edit in new pane)"],
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf .view-header-icon,
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf a[aria-label="Preview (Ctrl/Cmd+Click to open in new pane)"],
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf a[aria-label="More options"],
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical > div.workspace-leaf a[aria-label="Edit (Ctrl/Cmd+Click to edit in new pane)"],
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical > div.workspace-leaf .view-header-icon,
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical > div.workspace-leaf a[aria-label="Preview (Ctrl/Cmd+Click to open in new pane)"],
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical > div.workspace-leaf a[aria-label="More options"]{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf.stayopen a[aria-label="Edit (Ctrl/Cmd+Click to edit in new pane)"],
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf.stayopen .view-header-icon,
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf.stayopen a[aria-label="Preview (Ctrl/Cmd+Click to open in new pane)"],
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf.stayopen a[aria-label="More options"],
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen a[aria-label="Edit (Ctrl/Cmd+Click to edit in new pane)"],
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen a[aria-label="Preview (Ctrl/Cmd+Click to open in new pane)"],
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen .view-header-icon,
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen a[aria-label="More options"],
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf.stayopen a[aria-label="Edit (Ctrl/Cmd+Click to edit in new pane)"],
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf.stayopen .view-header-icon,
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf.stayopen a[aria-label="Preview (Ctrl/Cmd+Click to open in new pane)"],
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf.stayopen a[aria-label="More options"],
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen a[aria-label="Edit (Ctrl/Cmd+Click to edit in new pane)"],
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen a[aria-label="Preview (Ctrl/Cmd+Click to open in new pane)"],
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen .view-header-icon,
|
||||
.plugin-tabs:not(.hide-buttons) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen a[aria-label="More options"]{
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
/* Pane relief specific options */
|
||||
|
||||
/* optional feature underline next tab [pane relief cycle to next pane hotkey] */
|
||||
.plugin-tabs:not(.tab-underline) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical > div.workspace-leaf.stayopen + div.workspace-leaf .view-header-title ,
|
||||
.plugin-tabs:not(.tab-underline) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen + div.workspace-leaf .view-header-title {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* optional feature tab numbers (useful for pane relief shortcuts) */
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical:first-of-type > div.workspace-leaf .view-header-title-container, /* first tab container gets numbered from 1-8 */
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical:first-of-type > div.workspace-leaf:last-of-type .view-header-title-container,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical:only-of-type > div.workspace-leaf .view-header-title, /* alt+9 jumps to the LAST pane open, rather than the 9th, so only number if this is the only vertical split*/
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical:only-of-type > div.workspace-leaf:last-of-type .view-header-title,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical div.workspace-leaf .view-header-title,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical div.workspace-leaf:last-of-type .view-header-title,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical div.workspace-leaf .view-header-title-container,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical div.workspace-leaf:last-of-type .view-header-title-container {padding-left: 0px}
|
||||
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical:first-of-type > .workspace-leaf:nth-of-type(n+9) .view-header-title,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical > .workspace-leaf:nth-of-type(n+9) .view-header-title {padding-left: 5px} /* intentionally less specific, so it gets overridden */
|
||||
|
||||
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical:first-of-type > div.workspace-leaf > .workspace-leaf-content > .view-header .view-header-title::before,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split div.workspace-leaf > .workspace-leaf-content > .view-header .view-header-title::before{
|
||||
counter-reset: variable var(--pane-relief-label);
|
||||
content: counter(variable);
|
||||
padding-top: 2px;
|
||||
display: inline-block;
|
||||
height: calc(var(--headerheight) + 6px);
|
||||
margin-right: 5px;
|
||||
padding: 0 0.4em;
|
||||
width: auto; /* compatibility with mininal */
|
||||
vertical-align: baseline; /* compatibility with mininal */
|
||||
position: static; /* compatibility with mininal */
|
||||
background-color: var(--background-secondary-alt); /* change to appealing colours in your theme */
|
||||
}
|
||||
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical div.workspace-split.mod-vertical:first-of-type > div.workspace-leaf:nth-of-type(n+9) > .workspace-leaf-content > .view-header .view-header-title::before,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical > div.workspace-leaf:nth-of-type(n+9) > .workspace-leaf-content > .view-header .view-header-title::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical > div.workspace-split.mod-vertical:first-of-type > div.workspace-leaf:nth-of-type(n+9):last-of-type > .workspace-leaf-content > .view-header .view-header-title::before,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical > div.workspace-leaf:nth-of-type(n+9):last-of-type > .workspace-leaf-content > .view-header .view-header-title::before {
|
||||
display: inline-block;
|
||||
content: "9";
|
||||
}
|
||||
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical:first-of-type > div.workspace-leaf.stayopen .view-header-title::before,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen .view-header-title::before,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical:first-of-type > div.workspace-leaf.stayopen .view-header-title::before,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen .view-header-title::before {
|
||||
color: var(--text-muted); /* change to appealing colour in your theme */
|
||||
background-color: var(--background-secondary-alt);
|
||||
margin-left: -0.3em;
|
||||
}
|
||||
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical:first-of-type > div.workspace-leaf.stayopen .view-header-icon,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen .view-header-icon,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical:first-of-type > div.workspace-leaf.stayopen .view-header-icon,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen .view-header-icon {
|
||||
top: 0;
|
||||
padding-top: 6px;
|
||||
padding-right: 5px;
|
||||
background-color: var(--background-secondary-alt); /* make background of icon the same as the tab numbering */
|
||||
}
|
||||
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical > .workspace-split.mod-horizontal div.workspace-leaf.stayopen:nth-child(n+10) .view-header-icon,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical:first-of-type > div.workspace-leaf.stayopen:nth-child(n+10):not(:last-child) .view-header-icon,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen:nth-child(n+10):not(:last-child) .view-header-icon,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical > .workspace-split.mod-horizontal div.workspace-leaf.stayopen:nth-child(n+10) .view-header-icon,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical .workspace-split.mod-vertical:first-of-type > div.workspace-leaf.stayopen:nth-child(n+10):not(:last-child) .view-header-icon,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen:nth-child(n+10):not(:last-child) .view-header-icon {
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical .workspace-split.mod-horizontal > div.workspace-leaf:first-of-type,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen:only-of-type { border-radius: 10px 10px 0px 0px; } /* don't display tab number if only one tab is open */
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical .workspace-split.mod-horizontal > div.workspace-leaf:first-of-type .view-header-icon,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen:only-of-type .view-header-icon{background-color: transparent; margin-right:0.5em;}
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical .workspace-split.mod-horizontal > div.workspace-leaf:first-of-type .view-header-title::before,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical > div.workspace-leaf.stayopen:only-of-type .view-header-title::before { display: none!important; }
|
||||
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical .workspace-split.mod-horizontal div.workspace-leaf.stayopen .view-header,
|
||||
.plugin-tabs:not(.tab-numbering) .mod-root.workspace-split.mod-vertical.maximised > div.workspace-leaf.stayopen .view-header{
|
||||
border-left-width: 2px;
|
||||
border-top-width: 2px
|
||||
}
|
||||
|
||||
.plugin-tabs .workspace-split.mod-root > .workspace-leaf:last-of-type .workspace-leaf-content,
|
||||
.plugin-tabs .workspace-split.mod-root > .workspace-leaf:first-of-type .workspace-leaf-content {
|
||||
border-radius: 0px!important;
|
||||
}
|
||||
6
notes/.obsidian/plugins/table-editor-obsidian/data.json
vendored
Normal file
6
notes/.obsidian/plugins/table-editor-obsidian/data.json
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"formatType": "normal",
|
||||
"showRibbonIcon": true,
|
||||
"bindEnter": true,
|
||||
"bindTab": true
|
||||
}
|
||||
24029
notes/.obsidian/plugins/table-editor-obsidian/main.js
vendored
Normal file
24029
notes/.obsidian/plugins/table-editor-obsidian/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
notes/.obsidian/plugins/table-editor-obsidian/manifest.json
vendored
Normal file
11
notes/.obsidian/plugins/table-editor-obsidian/manifest.json
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"id": "table-editor-obsidian",
|
||||
"name": "Advanced Tables",
|
||||
"author": "Tony Grosinger",
|
||||
"authorUrl": "https://grosinger.net",
|
||||
"description": "Improved table navigation, formatting, manipulation, and formulas",
|
||||
"isDesktopOnly": false,
|
||||
"minAppVersion": "0.13.8",
|
||||
"version": "0.17.3",
|
||||
"js": "main.js"
|
||||
}
|
||||
28
notes/.obsidian/plugins/table-editor-obsidian/styles.css
vendored
Normal file
28
notes/.obsidian/plugins/table-editor-obsidian/styles.css
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
.HyperMD-table-row span.cm-inline-code {
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
.widget-icon {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
fill: var(--text-muted);
|
||||
}
|
||||
|
||||
.widget-icon:hover {
|
||||
fill: var(--text-normal);
|
||||
}
|
||||
|
||||
.advanced-tables-csv-export textarea {
|
||||
height: 200px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.advanced-tables-donation {
|
||||
width: 70%;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.advanced-tables-donate-button {
|
||||
margin: 10px;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue