feat: update to minimal night owl theme
This commit is contained in:
4306
.obsidian/plugins/buttons/main.js
vendored
Normal file
4306
.obsidian/plugins/buttons/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/buttons/manifest.json
vendored
Normal file
10
.obsidian/plugins/buttons/manifest.json
vendored
Normal file
@@ -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"
|
||||
}
|
||||
148
.obsidian/plugins/buttons/styles.css
vendored
Normal file
148
.obsidian/plugins/buttons/styles.css
vendored
Normal file
@@ -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;
|
||||
}
|
||||
31348
.obsidian/plugins/dataview/main.js
vendored
31348
.obsidian/plugins/dataview/main.js
vendored
File diff suppressed because one or more lines are too long
2
.obsidian/plugins/dataview/manifest.json
vendored
2
.obsidian/plugins/dataview/manifest.json
vendored
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "dataview",
|
||||
"name": "Dataview",
|
||||
"version": "0.4.22",
|
||||
"version": "0.5.64",
|
||||
"minAppVersion": "0.13.11",
|
||||
"description": "Complex data views for the data-obsessed.",
|
||||
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
||||
|
||||
97
.obsidian/plugins/dataview/styles.css
vendored
97
.obsidian/plugins/dataview/styles.css
vendored
@@ -1,3 +1,16 @@
|
||||
/** 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%;
|
||||
@@ -9,6 +22,10 @@
|
||||
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;
|
||||
@@ -24,27 +41,36 @@
|
||||
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 Field Rendering. */
|
||||
/*******************/
|
||||
/** Inline Fields **/
|
||||
/*******************/
|
||||
|
||||
.dataview.inline-field-key {
|
||||
border-top-left-radius: 250px;
|
||||
border-bottom-left-radius: 250px;
|
||||
padding-left: 16px;
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-primary-alt);
|
||||
@@ -52,20 +78,69 @@
|
||||
}
|
||||
|
||||
.dataview.inline-field-value {
|
||||
border-top-right-radius: 250px;
|
||||
border-bottom-right-radius: 250px;
|
||||
padding-left: 8px;
|
||||
padding-right: 16px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--text-nav-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-standalone-value {
|
||||
border-radius: 250px;
|
||||
padding-left: 16px;
|
||||
padding-right: 16px;
|
||||
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: ")";
|
||||
}
|
||||
|
||||
565
.obsidian/plugins/hotkey-helper/main.js
vendored
565
.obsidian/plugins/hotkey-helper/main.js
vendored
File diff suppressed because one or more lines are too long
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"id": "hotkey-helper",
|
||||
"name": "Hotkey Helper",
|
||||
"version": "0.3.11",
|
||||
"minAppVersion": "0.13.19",
|
||||
"version": "0.3.18",
|
||||
"minAppVersion": "1.2.8",
|
||||
"description": "Easily see and access any plugin's settings or hotkey assignments (and conflicts) from the Community Plugins tab",
|
||||
"author": "PJ Eby",
|
||||
"authorUrl": "https://github.com/pjeby"
|
||||
|
||||
4
.obsidian/plugins/hotkey-helper/styles.css
vendored
4
.obsidian/plugins/hotkey-helper/styles.css
vendored
@@ -1,4 +1,6 @@
|
||||
.clickable-icon.mod-error, .modal .community-plugin-info button.mod-error {
|
||||
.clickable-icon.mod-error,
|
||||
.modal .community-plugin-info button.mod-error,
|
||||
.modal-container .mod-community-plugin .community-modal-button-container button.mod-error {
|
||||
background-color: var(--background-modifier-error);
|
||||
}
|
||||
|
||||
|
||||
2163
.obsidian/plugins/note-refactor-obsidian/main.js
vendored
2163
.obsidian/plugins/note-refactor-obsidian/main.js
vendored
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"id": "note-refactor-obsidian",
|
||||
"name": "Note Refactor",
|
||||
"version": "1.7.1",
|
||||
"description": "Extract note content into new notes and split notes",
|
||||
"isDesktopOnly": false,
|
||||
"js": "main.js",
|
||||
"css": "style.css"
|
||||
}
|
||||
{
|
||||
"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"
|
||||
}
|
||||
|
||||
36
.obsidian/plugins/obsidian-minimal-settings/data.json
vendored
Normal file
36
.obsidian/plugins/obsidian-minimal-settings/data.json
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"theme": "moonstone",
|
||||
"lightStyle": "minimal-light",
|
||||
"darkStyle": "minimal-dark",
|
||||
"lightScheme": "minimal-default-light",
|
||||
"darkScheme": "minimal-default-dark",
|
||||
"editorFont": "",
|
||||
"lineHeight": 1.5,
|
||||
"lineWidth": 40,
|
||||
"lineWidthWide": 50,
|
||||
"maxWidth": 88,
|
||||
"textNormal": 21,
|
||||
"textSmall": 13,
|
||||
"imgGrid": false,
|
||||
"imgWidth": "img-default-width",
|
||||
"tableWidth": "table-default-width",
|
||||
"iframeWidth": "iframe-default-width",
|
||||
"mapWidth": "map-default-width",
|
||||
"chartWidth": "chart-default-width",
|
||||
"colorfulHeadings": true,
|
||||
"colorfulFrame": true,
|
||||
"colorfulActiveStates": true,
|
||||
"trimNames": true,
|
||||
"labeledNav": true,
|
||||
"fullWidthMedia": true,
|
||||
"bordersToggle": true,
|
||||
"minimalStatus": true,
|
||||
"focusMode": false,
|
||||
"underlineInternal": true,
|
||||
"underlineExternal": true,
|
||||
"useSystemTheme": true,
|
||||
"folding": true,
|
||||
"lineNumbers": true,
|
||||
"readableLineLength": true,
|
||||
"devBlockWidth": false
|
||||
}
|
||||
972
.obsidian/plugins/obsidian-minimal-settings/main.js
vendored
Normal file
972
.obsidian/plugins/obsidian-minimal-settings/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
.obsidian/plugins/obsidian-minimal-settings/manifest.json
vendored
Normal file
11
.obsidian/plugins/obsidian-minimal-settings/manifest.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "obsidian-minimal-settings",
|
||||
"name": "Minimal Theme Settings",
|
||||
"version": "7.3.1",
|
||||
"minAppVersion": "1.1.9",
|
||||
"description": "Change the colors, fonts and features of Minimal Theme.",
|
||||
"author": "@kepano",
|
||||
"authorUrl": "https://www.twitter.com/kepano",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/kepano",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
1
.obsidian/plugins/obsidian-minimal-settings/styles.css
vendored
Normal file
1
.obsidian/plugins/obsidian-minimal-settings/styles.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/* Empty */
|
||||
44
.obsidian/plugins/obsidian-style-settings/data.json
vendored
Normal file
44
.obsidian/plugins/obsidian-style-settings/data.json
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"name": "Night Owl Minimal Theme",
|
||||
"id": "a-unique-id",
|
||||
"settings": {
|
||||
"id": "accent",
|
||||
"title": "Accent Color",
|
||||
"type": "variable-themed-color",
|
||||
"format": "hex",
|
||||
"opacity": "false",
|
||||
"default-light": "#007AFF",
|
||||
"default-dark": "#2DB253"
|
||||
},
|
||||
"minimal-style@@metadata-heading-off": true,
|
||||
"minimal-style@@metadata-add-property-off": false,
|
||||
"minimal-style@@metadata-dividers": false,
|
||||
"minimal-style@@h1-size": "3.052rem",
|
||||
"minimal-style@@h2-size": "2.441rem",
|
||||
"minimal-style@@h3-size": "1.953rem",
|
||||
"minimal-style@@h4-size": "1.563rem",
|
||||
"minimal-style@@h5-size": "1.25rem",
|
||||
"minimal-style@@h6-size": "1rem",
|
||||
"minimal-style@@code-size": "16px",
|
||||
"minimal-style@@file-header-font-size": "1rem",
|
||||
"minimal-style@@h1-font": "Rubik, 'Avenir Next', Helvetica, Arial, sans-serif",
|
||||
"minimal-style@@h2-font": "Rubik, 'Avenir Next', Helvetica, Arial, sans-serif",
|
||||
"minimal-style@@h4-font": "Rubik, 'Avenir Next', Helvetica, Arial, sans-serif",
|
||||
"minimal-style@@h3-font": "Rubik, 'Avenir Next', Helvetica, Arial, sans-serif",
|
||||
"minimal-style@@h5-font": "Rubik, 'Avenir Next', Helvetica, Arial, sans-serif",
|
||||
"minimal-style@@h6-font": "Rubik, 'Avenir Next', Helvetica, Arial, sans-serif",
|
||||
"minimal-style@@bg1@@dark": "#011628",
|
||||
"minimal-style@@h1-color@@dark": "#FF79C6",
|
||||
"minimal-style@@h2-color@@dark": "#82AAFF",
|
||||
"minimal-style@@h3-color@@dark": "#C5E478",
|
||||
"minimal-style@@h4-color@@dark": "#FFB86C",
|
||||
"minimal-style@@h5-color@@dark": "#50FA7B",
|
||||
"minimal-style@@h6-color@@dark": "#8BE9FD",
|
||||
"minimal-style@@h6-weight": 500,
|
||||
"minimal-style@@h6-variant": "normal",
|
||||
"minimal-style@@h5-variant": "normal",
|
||||
"minimal-style@@bg2@@dark": "#011C32",
|
||||
"minimal-style@@frame-background@@dark": "#011C32",
|
||||
"minimal-style@@minimal-tab-text-color@@dark": "#CCCCCC",
|
||||
"minimal-style@@bold-color@@dark": "#50FA7B"
|
||||
}
|
||||
9850
.obsidian/plugins/obsidian-style-settings/main.js
vendored
Normal file
9850
.obsidian/plugins/obsidian-style-settings/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/obsidian-style-settings/manifest.json
vendored
Normal file
10
.obsidian/plugins/obsidian-style-settings/manifest.json
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-style-settings",
|
||||
"name": "Style Settings",
|
||||
"version": "1.0.7",
|
||||
"minAppVersion": "0.11.5",
|
||||
"description": "Offers controls for adjusting theme, plugin, and snippet CSS variables.",
|
||||
"author": "mgmeyers",
|
||||
"authorUrl": "https://github.com/mgmeyers/obsidian-style-settings",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
243
.obsidian/plugins/obsidian-style-settings/styles.css
vendored
Normal file
243
.obsidian/plugins/obsidian-style-settings/styles.css
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"headerWidth": 32,
|
||||
"leafWidth": 700,
|
||||
"leafAutoWidth": false,
|
||||
"disabled": false,
|
||||
"rotateHeaders": true,
|
||||
"headerAlt": true,
|
||||
"orienation": "mixed",
|
||||
"stackingEnabled": true,
|
||||
"smoothAnimation": true
|
||||
}
|
||||
589
.obsidian/plugins/sliding-panes-obsidian/main.js
vendored
589
.obsidian/plugins/sliding-panes-obsidian/main.js
vendored
File diff suppressed because one or more lines are too long
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"id": "sliding-panes-obsidian",
|
||||
"name": "Sliding Panes (Andy's Mode)",
|
||||
"author": "death_au",
|
||||
"authorUrl": "https://github.com/deathau",
|
||||
"description": "Sliding Panes! Based on the style of [Andy Matuschak's Notes](https://notes.andymatuschak.org/)",
|
||||
"isDesktopOnly": false,
|
||||
"version": "3.2.3",
|
||||
"minAppVersion": "0.10.3"
|
||||
}
|
||||
115
.obsidian/plugins/sliding-panes-obsidian/styles.css
vendored
115
.obsidian/plugins/sliding-panes-obsidian/styles.css
vendored
@@ -1,115 +0,0 @@
|
||||
body.plugin-sliding-panes .workspace > .mod-root {
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
}
|
||||
body.plugin-sliding-panes .workspace > .mod-root > .workspace-leaf {
|
||||
display: block;
|
||||
flex: none;
|
||||
}
|
||||
body.plugin-sliding-panes .workspace > .mod-root > .workspace-leaf .workspace-leaf-content {
|
||||
position: relative;
|
||||
}
|
||||
body.plugin-sliding-panes .workspace > .mod-root .mod-am-right-of-active .cm-s-obsidian > div:not([class]) {
|
||||
left: -50% !important;
|
||||
}
|
||||
body.plugin-sliding-panes .workspace > .mod-root .mod-am-left-of-active .cm-s-obsidian > div:not([class]) {
|
||||
left: 150% !important;
|
||||
}
|
||||
|
||||
body.plugin-sliding-panes-stacking .workspace > .mod-root > .workspace-leaf {
|
||||
box-shadow: 0px 0px 20px 20px rgba(0, 0, 0, 0.25);
|
||||
position: sticky;
|
||||
}
|
||||
|
||||
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf {
|
||||
/* first we'll add a bit of gap for the spines */
|
||||
/* active titles have different border colours */
|
||||
}
|
||||
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content {
|
||||
padding-left: var(--header-width);
|
||||
/* this is where the magic happens */
|
||||
/* get rid of the gap left by the now-missing horizontal title */
|
||||
}
|
||||
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header {
|
||||
writing-mode: vertical-lr;
|
||||
text-orientation: sideways;
|
||||
border-right: 1px solid var(--background-secondary-alt);
|
||||
border-left: 2px solid var(--background-secondary-alt);
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
width: var(--header-width);
|
||||
height: auto;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
/* unset the title container height and swap padding */
|
||||
/* swap the padding/margin around for the header and actions icons */
|
||||
}
|
||||
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header > .view-header-title-container {
|
||||
height: unset;
|
||||
padding-left: unset;
|
||||
padding-top: 0;
|
||||
/* get rid of unnecessary padding */
|
||||
/* fix the long-title-obscuring shadows */
|
||||
}
|
||||
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header > .view-header-title-container > .view-header-title {
|
||||
padding-right: 0;
|
||||
padding-top: 15px;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header > .view-header-title-container:after {
|
||||
width: 100%;
|
||||
height: 15px;
|
||||
top: unset;
|
||||
bottom: 0;
|
||||
background: linear-gradient(to bottom, transparent, var(--background-secondary));
|
||||
}
|
||||
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header > .view-header-title-container:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 15px;
|
||||
top: 0;
|
||||
bottom: unset;
|
||||
background: linear-gradient(to top, transparent, var(--background-secondary));
|
||||
}
|
||||
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header .view-header-icon,
|
||||
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header .view-actions {
|
||||
padding: 0;
|
||||
}
|
||||
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header .view-header-icon {
|
||||
margin: 8px 0 3px 0;
|
||||
}
|
||||
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header .view-action {
|
||||
margin: 8px 0;
|
||||
}
|
||||
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-content {
|
||||
height: 100%;
|
||||
}
|
||||
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf.mod-active > .workspace-leaf-content > .view-header {
|
||||
border-right: 2px solid var(--interactive-accent);
|
||||
border-bottom: none;
|
||||
}
|
||||
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf.mod-active > .workspace-leaf-content > .view-header > .view-header-title-container:after {
|
||||
background: linear-gradient(to bottom, transparent, var(--background-primary-alt));
|
||||
}
|
||||
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf.mod-active > .workspace-leaf-content > .view-header > .view-header-title-container:before {
|
||||
background: linear-gradient(to top, transparent, var(--background-primary-alt));
|
||||
}
|
||||
|
||||
body.plugin-sliding-panes-rotate-header.plugin-sliding-panes-header-alt .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header .view-header-title-container {
|
||||
transform: rotate(180deg);
|
||||
text-align: right;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
body.plugin-sliding-panes-rotate-header.plugin-sliding-select-orientation-sideway .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header {
|
||||
text-orientation: sideways !important;
|
||||
}
|
||||
body.plugin-sliding-panes-rotate-header.plugin-sliding-select-orientation-mixed .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header {
|
||||
text-orientation: mixed !important;
|
||||
}
|
||||
body.plugin-sliding-panes-rotate-header.plugin-sliding-select-orientation-upright .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header {
|
||||
text-orientation: upright !important;
|
||||
}
|
||||
7860
.obsidian/plugins/tag-wrangler/main.js
vendored
7860
.obsidian/plugins/tag-wrangler/main.js
vendored
File diff suppressed because one or more lines are too long
9
.obsidian/plugins/tag-wrangler/manifest.json
vendored
9
.obsidian/plugins/tag-wrangler/manifest.json
vendored
@@ -1,8 +1,11 @@
|
||||
{
|
||||
"id": "tag-wrangler",
|
||||
"name": "Tag Wrangler",
|
||||
"version": "0.5.0",
|
||||
"minAppVersion": "0.13.19",
|
||||
"author": "PJ Eby",
|
||||
"authorUrl": "https://github.com/pjeby",
|
||||
"version": "0.6.1",
|
||||
"minAppVersion": "1.2.8",
|
||||
"description": "Rename, merge, toggle, and search tags from the tag pane",
|
||||
"isDesktopOnly": true
|
||||
"fundingUrl": "https://dirtsimple.org/tips/tag-wrangler",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
|
||||
173
.obsidian/plugins/tag-wrangler/styles.css
vendored
173
.obsidian/plugins/tag-wrangler/styles.css
vendored
@@ -1,172 +1 @@
|
||||
.smalltalk {
|
||||
display: flex;
|
||||
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
|
||||
transition: 200ms opacity;
|
||||
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
overflow: auto;
|
||||
padding: 20px;
|
||||
position: fixed;
|
||||
right: 0;
|
||||
top: 0;
|
||||
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.smalltalk + .smalltalk {
|
||||
transition: ease 1s;
|
||||
}
|
||||
|
||||
.smalltalk .page {
|
||||
border-radius: 3px;
|
||||
background: white;
|
||||
box-shadow: 0 4px 23px 5px rgba(0, 0, 0, .2), 0 2px 6px rgba(0, 0, 0, .15);
|
||||
color: #333;
|
||||
min-width: 400px;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 500px) {
|
||||
.smalltalk .page {
|
||||
min-width: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.smalltalk .page > .close-button {
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAQAAAC1QeVaAAAAUklEQVR4XqXPYQrAIAhAYW/gXd8NJxTopVqsGEhtf+L9/ERU2k/HSMFQpKcYJeNFI9Be0LCMij8cYyjj5EHIivGBkwLfrbX3IF8PqumVmnDpEG+eDsKibPG2JwAAAABJRU5ErkJggg==);
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
height: 14px;
|
||||
position: absolute;
|
||||
right: 7px;
|
||||
top: 7px;
|
||||
width: 14px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.smalltalk .page > .close-button:hover {
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAQAAAC1QeVaAAAAnUlEQVR4XoWQQQ6CQAxFewjkJkMCyXgJPMk7AiYczyBeZEAX6AKctGIaN+bt+trk9wtGQc/IkhnoKGxqqiWxOSZalapWFZ6VrIUDExsN0a5JRBq9LoVOR0eEQMoEhKizXhhsn0p1sCWVo7CwOf1RytPL8CPvwuBUoHL6ugeK30CVD1TqK7V/hdpe+VNChhOzV8xWny/+xosHF8578W/Hmc1OOC3wmwAAAABJRU5ErkJggg==);
|
||||
}
|
||||
|
||||
.smalltalk .progress {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.smalltalk .page header {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
max-width: 500px;
|
||||
|
||||
user-select: none;
|
||||
color: #333;
|
||||
font-size: 120%;
|
||||
font-weight: bold;
|
||||
margin: 0;
|
||||
padding: 14px 17px;
|
||||
text-shadow: white 0 1px 2px;
|
||||
}
|
||||
|
||||
.smalltalk .page .content-area {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
|
||||
padding: 6px 17px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.smalltalk .page .action-area {
|
||||
padding: 14px 17px;
|
||||
}
|
||||
|
||||
button {
|
||||
font-family: Ubuntu, Arial, sans-serif;
|
||||
}
|
||||
|
||||
.smalltalk button, .smalltalk .smalltalk {
|
||||
min-height: 2em;
|
||||
min-width: 4em;
|
||||
}
|
||||
|
||||
.smalltalk button {
|
||||
appearance: none;
|
||||
user-select: none;
|
||||
background-image: linear-gradient(#ededed, #ededed 38%, #dedede);
|
||||
|
||||
border: 1px solid rgba(0, 0, 0, 0.25);
|
||||
border-radius: 2px;
|
||||
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.75);
|
||||
color: #444;
|
||||
font: inherit;
|
||||
margin: 0 1px 0 0;
|
||||
text-shadow: 0 1px 0 rgb(240, 240, 240);
|
||||
}
|
||||
|
||||
.smalltalk button::-moz-focus-inner {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.smalltalk button:enabled:active {
|
||||
background-image: linear-gradient(#e7e7e7, #e7e7e7 38%, #d7d7d7);
|
||||
box-shadow: none;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.smalltalk .page .button-strip {
|
||||
display: flex;
|
||||
|
||||
flex-direction: row;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.smalltalk .page .button-strip > button {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.smalltalk input {
|
||||
width: 100%;
|
||||
border: 1px solid #bfbfbf;
|
||||
border-radius: 2px;
|
||||
box-sizing: border-box;
|
||||
color: #444;
|
||||
font: inherit;
|
||||
margin: 0;
|
||||
min-height: 2em;
|
||||
padding: 3px;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.smalltalk button:enabled:focus, .smalltalk input:enabled:focus {
|
||||
transition: border-color 200ms;
|
||||
border-color: rgb(77, 144, 254);
|
||||
outline: none;
|
||||
}
|
||||
|
||||
|
||||
.smalltalk input[pattern]:invalid, .smalltalk input[pattern]:invalid:enabled:focus, .smalltalk input[pattern][aria-invalid='true'], .smalltalk input[pattern][aria-invalid='true']:enabled:focus {
|
||||
border-color: var(--text-error);
|
||||
background-color: var(--background-modifier-error); }
|
||||
|
||||
.smalltalk .page, .smalltalk .page header, .smalltalk input, .smalltalk button {
|
||||
color: var(--text-normal);
|
||||
text-shadow: none; }
|
||||
|
||||
.smalltalk .page {
|
||||
background: var(--background-primary); }
|
||||
|
||||
.smalltalk button[data-name="js-ok"] {
|
||||
background: var(--background-modifier-error); }
|
||||
|
||||
.smalltalk button[data-name="js-cancel"] {
|
||||
background: var(--background-secondary-alt); }
|
||||
|
||||
.smalltalk button {
|
||||
box-shadow: none; }
|
||||
.ophidian-dialog .dialog-text{margin-bottom:.75em}.ophidian-dialog.mod-confirmation input[type=text]:invalid,.ophidian-dialog.mod-confirmation input[type=text]:invalid:enabled:focus,.ophidian-dialog.mod-confirmation input[type=text][aria-invalid=true],.ophidian-dialog.mod-confirmation input[type=text][aria-invalid=true]:enabled:focus{border-color:var(--text-error);background-color:var(--background-modifier-error)}
|
||||
|
||||
3004
.obsidian/plugins/templater-obsidian/main.js
vendored
3004
.obsidian/plugins/templater-obsidian/main.js
vendored
File diff suppressed because one or more lines are too long
@@ -1,10 +1,11 @@
|
||||
{
|
||||
"id": "templater-obsidian",
|
||||
"name": "Templater",
|
||||
"version": "1.10.0",
|
||||
"version": "2.1.0",
|
||||
"description": "Create and use templates",
|
||||
"minAppVersion": "0.11.13",
|
||||
"minAppVersion": "1.5.0",
|
||||
"author": "SilentVoid",
|
||||
"authorUrl": "https://github.com/SilentVoid13",
|
||||
"helpUrl": "https://silentvoid13.github.io/Templater/",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
|
||||
168
.obsidian/plugins/templater-obsidian/styles.css
vendored
168
.obsidian/plugins/templater-obsidian/styles.css
vendored
@@ -24,6 +24,10 @@
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.templater_donating {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.templater_title {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
@@ -63,6 +67,21 @@
|
||||
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;
|
||||
@@ -88,146 +107,81 @@
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-templater-interpolation-tag {
|
||||
color: #008bff;
|
||||
color: var(--code-property, #008bff);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-templater-execution-tag {
|
||||
color: #c0d700;
|
||||
color: var(--code-function, #c0d700);
|
||||
}
|
||||
|
||||
.cm-s-obsidian .cm-templater-command.cm-templater-raw-tag {
|
||||
color: green;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-keyword {
|
||||
color: #00a7aa;
|
||||
.cm-s-obsidian .cm-templater-command.cm-keyword {
|
||||
color: var(--code-keyword, #00a7aa);
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-atom {
|
||||
color: #f39b35;
|
||||
.cm-s-obsidian .cm-templater-command.cm-atom {
|
||||
color: var(--code-normal, #f39b35);
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-number {
|
||||
color: #a06fca;
|
||||
.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);
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-type {
|
||||
color: #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));
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-def {
|
||||
color: #98e342;
|
||||
.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);
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-property {
|
||||
color: #d4d4d4;
|
||||
.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);
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-variable {
|
||||
color: #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);
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-variable-2 {
|
||||
color: #da7dae;
|
||||
.cm-s-obsidian .cm-templater-command.cm-tag {
|
||||
color: var(--code-tag, #fc4384);
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-variable-3 {
|
||||
color: #a06fca;
|
||||
.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);
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-type.cm-def {
|
||||
color: #fc4384;
|
||||
.cm-s-obsidian .cm-templater-command.cm-string,
|
||||
.cm-s-obsidian .cm-templater-command.cm-string-2 {
|
||||
color: var(--code-string, #e6db74);
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-property.cm-def {
|
||||
color: #fc4384;
|
||||
.cm-s-obsidian .cm-templater-command.cm-header,
|
||||
.cm-s-obsidian .cm-templater-command.cm-hr {
|
||||
color: var(--code-keyword, #da7dae);
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-callee {
|
||||
color: #fc4384;
|
||||
.cm-s-obsidian .cm-templater-command.cm-link {
|
||||
color: var(--code-normal, #696d70);
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-operator {
|
||||
color: #fc4384;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-qualifier {
|
||||
color: #fc4384;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-tag {
|
||||
color: #fc4384;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-tag.cm-bracket {
|
||||
color: #d4d4d4;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-attribute {
|
||||
color: #a06fca;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-comment {
|
||||
color: #696d70;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-comment.cm-tag {
|
||||
color: #fc4384;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-comment.cm-attribute {
|
||||
color: #d4d4d4;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-string {
|
||||
color: #e6db74;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-string-2 {
|
||||
color: #f39b35;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-meta {
|
||||
color: #d4d4d4;
|
||||
background: inherit;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-builtin {
|
||||
color: #fc4384;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-header {
|
||||
color: #da7dae;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-hr {
|
||||
color: #98e342;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-link {
|
||||
color: #696d70;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.cm-error {
|
||||
.cm-s-obsidian .cm-templater-command.cm-error {
|
||||
border-bottom: 1px solid #c42412;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian pre.HyperMD-codeblock .cm-keyword {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.theme-dark
|
||||
.cm-s-obsidian
|
||||
.cm-templater-command.CodeMirror-activeline-background {
|
||||
background: #272727;
|
||||
}
|
||||
|
||||
.theme-dark .cm-s-obsidian .cm-templater-command.CodeMirror-matchingbracket {
|
||||
outline: 1px solid grey;
|
||||
color: #d4d4d4 !important;
|
||||
}
|
||||
|
||||
.CodeMirror-hints {
|
||||
position: absolute;
|
||||
z-index: 10;
|
||||
|
||||
Reference in New Issue
Block a user